File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 6565 if : steps.changed-files.outputs.only_changed == 'false'
6666 run : |
6767 nix profile install ./nix#go_1_22
68- go tool covdata textfmt -i=integration_tests/ coverage -o profile.txt
68+ go tool covdata textfmt -i=coverage -o profile.txt
6969 - name : Upload coverage report
7070 if : steps.changed-files.outputs.only_changed == 'false'
7171 uses : codecov/codecov-action@v4
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ TESTS_TO_RUN ?= all
240240
241241run-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
Original file line number Diff line number Diff line change 11[pytest]
22addopts = --ignore =contracts
3+ python_files = integration_tests/*.py
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ echo "build test contracts"
99cd ../integration_tests/contracts
1010HUSKY_SKIP_INSTALL=1 npm install
1111npm run typechain
12- cd ..
12+ cd ../..
1313TESTS_TO_RUN=" ${TESTS_TO_RUN:- all} "
1414if [[ " $TESTS_TO_RUN " == " all" ]]; then
1515 echo " run all tests"
1818 echo " run tests matching $TESTS_TO_RUN "
1919 cmd=" pytest -vv -s --session-timeout=1800 --timeout=1800 -m '$TESTS_TO_RUN '"
2020fi
21- nix-shell --run " $cmd "
21+ nix-shell ./integration_tests/shell.nix --run " $cmd "
You can’t perform that action at this time.
0 commit comments