laconicd/scripts/run-integration-tests.sh
2022-10-10 16:08:33 +05:30

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