161a838b6a
* more set -o errexit -o pipefail * no pipefail, too fancy for dash at least...
11 lines
157 B
Bash
Executable file
11 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
|