mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-12-01 20:05:43 +03:00
ccbd20bc94
* Chia VDF to 0.9 * Try test-cache 20
11 lines
180 B
Bash
Executable File
11 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
|
|
python3 -m venv venv
|
|
# shellcheck disable=SC1091
|
|
. ./activate
|
|
pip3 install .
|
|
|
|
py.test ./tests/blockchain -s -v
|
|
py.test ./tests/core -s -v
|
|
py.test ./tests/wallet -s -v
|