xch-blockchain/run-py-tests.sh

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