lint: add bash shebang

pull/1799/head
alpharush 2 years ago
parent 2e47d3de93
commit da780b49e6
  1. 2
      .github/scripts/integration_test_runner.sh
  2. 2
      .github/scripts/tool_test_runner.sh
  3. 2
      .github/scripts/unit_test_runner.sh

@ -1,3 +1,5 @@
#!/usr/bin/env bash
# setup hardhat for compilation tests
pushd tests/e2e/compilation/test_data/test_node_modules/
npm install hardhat

@ -1,3 +1,5 @@
#!/usr/bin/env bash
npm install --global ganache
# used to pass --cov=$path and --cov-append to pytest
pytest $1 tests/tools/read-storage/test_read_storage.py

@ -1,3 +1,5 @@
#!/usr/bin/env bash
# used to pass --cov=$path and --cov-append to pytest
pytest $1 tests/unit/
if [ "$1" != "" ]; then

Loading…
Cancel
Save