Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions code/integration-tests/runtime-tests/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Priorities

1. No false negatives. Such tests to be deleted (see rfc about brittle and flaky tests)
2. Time to merge into main. Should be fast.
3. Super low maintainance. 20% of tests for critical paths cover 80% of failures. Easy to find why in the internet why. Use same tools as ops and devs.
4. No bugs into main merged.
5. Readability of tests output. Easy to reproduce tests locally and doing smoke tests in repeatable way so can just eyeball what wrong.
5 changes: 4 additions & 1 deletion code/integration-tests/runtime-tests/runtime-tests.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
} 2>&1 & ) | tee devnet-xc.log &

process-compose-stop() {
for i in $(process-compose process list); do process-compose process stop "$i"; done
for i in $(process-compose process list)
do
process-compose process stop "$i"
done
}

TRIES=0
Expand Down