We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f50271 commit 303a20bCopy full SHA for 303a20b
scripts/run-e2ei-tests.sh
@@ -18,7 +18,7 @@ esac
18
tmpfile=$(mktemp)
19
rm ${tmpfile}
20
mkfifo ${tmpfile}
21
-cargo run --locked test-wire-server > ${tmpfile} &
+cargo run --locked --bin test-wire-server > ${tmpfile} &
22
test_wire_server_pid=$!
23
24
# The test suite needs this environment variable in order to set up the test
@@ -27,7 +27,7 @@ read TEST_WIRE_SERVER_ADDR < ${tmpfile}
27
export TEST_WIRE_SERVER_ADDR
28
29
echo -e \\nRunning nextest with arguments \"$@\"
30
-cargo nextest run --locked "$@"
+cargo nextest run --ignore-default-filter --locked -p wire-e2e-identity "$@"
31
test_exit_code="$?"
32
33
# Clean up.
0 commit comments