16 lines
298 B
Bash
Raw Normal View History

2021-02-12 20:17:25 -08:00
#!/bin/bash
set -euxo pipefail
python -m pip install --upgrade pip
pip install -e .
pip install -r test_requirements.txt
./scripts/codegen.sh
black --check --exclude 'gometa/metadata' -S -t py36 src tests
isort --check-only src tests
flake8 --count --statistics src tests
mypy -p gometa
pytest