laconicd-deprecated/scripts/run-integration-tests.sh
yihuang 0e46b15e8d
fix: integration tests are not run in CI (#1221)
Solution:
- make it run
- add python linter job for the python codes
- fix nix expression to build ethermintd

add file diff condition

add gomod2nix check
2022-08-02 08:21:03 +02:00

14 lines
271 B
Bash
Executable File

#!/bin/sh
set -e
cd "$(dirname "$0")"
# explicitly set a short TMPDIR to prevent path too long issue on macosx
export TMPDIR=/tmp
echo "build test contracts"
cd ../tests/integration_tests/contracts
HUSKY_SKIP_INSTALL=1 npm install
npm run typechain
cd ..
pytest -vv -s