Skip to content

Commit 115fe47

Browse files
committed
align rootdir
1 parent 6115128 commit 115fe47

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ TESTS_TO_RUN ?= all
240240

241241
run-integration-tests:
242242
@make gen-bindings-contracts
243-
@nix-shell ./integration_tests/shell.nix --run ./scripts/run-integration-tests
243+
@./scripts/run-integration-tests
244244

245245
.PHONY: run-integration-tests
246246

scripts/run-integration-tests

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ echo "build test contracts"
99
cd ../integration_tests/contracts
1010
HUSKY_SKIP_INSTALL=1 npm install
1111
npm run typechain
12-
cd ..
12+
cd ../..
1313
TESTS_TO_RUN="${TESTS_TO_RUN:-all}"
1414
if [[ "$TESTS_TO_RUN" == "all" ]]; then
1515
echo "run all tests"
@@ -18,4 +18,4 @@ else
1818
echo "run tests matching $TESTS_TO_RUN"
1919
cmd="pytest -vv -s --session-timeout=1800 --timeout=1800 -m '$TESTS_TO_RUN'"
2020
fi
21-
nix-shell --run "$cmd"
21+
nix-shell ./integration_tests/shell.nix --run "$cmd"

0 commit comments

Comments
 (0)