laconicd/scripts/run-integration-tests.sh

14 lines
271 B
Bash
Raw Normal View History

2022-10-10 10:38:33 +00:00
#!/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