chia-blockchain/run-py-tests.sh
Don Kackman ed3699f96e
static analysis changes (#113)
changes based on the output cppcheck --enable=all --inconclusive --force *.hpp

* marked members const where possible
* marked members noexcept where possible
* marked members static where possible
* changed to constructor initialization lists where possible
2020-03-09 22:23:13 +09:00

8 lines
133 B
Bash
Executable File

#!/bin/bash
git submodule update --init --recursive
python3 -m venv .venv
. .venv/bin/activate
pip3 install .
py.test ./tests -s -v