2021-02-15 18:29:27 -08:00

16 lines
300 B
Bash
Executable File

#!/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 'datahub/metadata' -S -t py36 src tests
isort --check-only src tests
flake8 --count --statistics src tests
mypy -p datahub
pytest