mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-10 12:29:49 +03:00
161a838b6a
* more set -o errexit -o pipefail * no pipefail, too fancy for dash at least...
12 lines
157 B
Bash
Executable File
12 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
|
|
python3 -m venv venv
|
|
# shellcheck disable=SC1091
|
|
. ./activate
|
|
pip3 install ".[dev]"
|
|
mypy --install-types
|
|
|
|
py.test ./tests -s -v
|