Skip to content

Commit 303a20b

Browse files
committed
chore: scripts: adjust run-e2ei-tests.sh to the new home
1 parent 8f50271 commit 303a20b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/run-e2ei-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ esac
1818
tmpfile=$(mktemp)
1919
rm ${tmpfile}
2020
mkfifo ${tmpfile}
21-
cargo run --locked test-wire-server > ${tmpfile} &
21+
cargo run --locked --bin test-wire-server > ${tmpfile} &
2222
test_wire_server_pid=$!
2323

2424
# The test suite needs this environment variable in order to set up the test
@@ -27,7 +27,7 @@ read TEST_WIRE_SERVER_ADDR < ${tmpfile}
2727
export TEST_WIRE_SERVER_ADDR
2828

2929
echo -e \\nRunning nextest with arguments \"$@\"
30-
cargo nextest run --locked "$@"
30+
cargo nextest run --ignore-default-filter --locked -p wire-e2e-identity "$@"
3131
test_exit_code="$?"
3232

3333
# Clean up.

0 commit comments

Comments
 (0)