mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
397 B
18 lines
397 B
#!/usr/bin/env bash
|
|
|
|
# setup hardhat for compilation tests
|
|
pushd tests/e2e/compilation/test_data/test_node_modules/ || exit
|
|
npm install hardhat
|
|
popd || exit
|
|
|
|
# used to pass --cov=$path and --cov-append to pytest
|
|
if [ "$1" != "" ]; then
|
|
pytest "$1" tests/e2e/ -n auto
|
|
status_code=$?
|
|
python -m coverage report
|
|
else
|
|
pytest tests/e2e/ -n auto
|
|
status_code=$?
|
|
fi
|
|
|
|
exit "$status_code" |