mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-10 12:29:49 +03:00
066a8b2119
* Mypy issues on python 3.9.7 * Typo
10 lines
141 B
Bash
Executable File
10 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
|
|
python3 -m venv venv
|
|
# shellcheck disable=SC1091
|
|
. ./activate
|
|
pip3 install ".[dev]"
|
|
mypy --install-types
|
|
|
|
py.test ./tests -s -v
|