chia-blockchain/run-py-tests.sh

11 lines
187 B
Bash
Raw Normal View History

#!/bin/bash
python3 -m venv venv
# shellcheck disable=SC1091
. ./activate
pip3 install ".[dev]"
py.test ./tests/blockchain -s -v
2021-01-18 22:52:53 +03:00
py.test ./tests/core -s -v
py.test ./tests/wallet -s -v