chia-blockchain/run-py-tests.sh

11 lines
187 B
Bash
Executable File

#!/bin/bash
python3 -m venv venv
# shellcheck disable=SC1091
. ./activate
pip3 install ".[dev]"
py.test ./tests/blockchain -s -v
py.test ./tests/core -s -v
py.test ./tests/wallet -s -v