We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57080fc commit 1bcba5fCopy full SHA for 1bcba5f
1 file changed
scripts/run-integration-tests
@@ -11,6 +11,13 @@ HUSKY_SKIP_INSTALL=1 npm ci
11
npm run typechain
12
cd ../..
13
TESTS_TO_RUN="${TESTS_TO_RUN:-all}"
14
+
15
+# Pre-build upgrade test packages outside of pytest timeout
16
+if [[ "$TESTS_TO_RUN" == "upgrade" || "$TESTS_TO_RUN" == "all" ]]; then
17
+ echo "pre-building upgrade test packages (this may take a while if not cached)..."
18
+ nix-build ./integration_tests/configs/upgrade-test-package.nix
19
+fi
20
21
if [[ "$TESTS_TO_RUN" == "all" ]]; then
22
echo "run all tests"
23
cmd="pytest -vv -s --session-timeout=6000 --timeout=6000"
0 commit comments