Skip to content

Commit

Permalink
fix: update correctness test selector (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 authored Jul 1, 2024
1 parent ad9172a commit 6acf4a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@ jobs:
run: |
set -ex
if [ "${{ github.event_name }}" == "pull_request" ]; then
TESTS="fast"
TEST_SELECTOR="correctness/fast"
elif [ "${{ github.event_name }}" == "merge_group" ]; then
TESTS="."
TEST_SELECTOR="correctness"
elif [ "${{ github.event_name}}" == "workflow_dispatch" ]; then
TESTS="${{ github.event.inputs.test_selector || '.' }}"
TEST_SELECTOR="${{ github.event.inputs.test_selector || 'correctness' }}"
fi
./bin/hermetic-driver test \
--network basic-rust.yaml \
--flavor correctness \
--test-selector ${TESTS} \
--test-selector ${TEST_SELECTOR} \
--network-ttl 3600

0 comments on commit 6acf4a0

Please sign in to comment.