mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-18 14:16:48 +00:00
16 lines
298 B
Bash
16 lines
298 B
Bash
![]() |
#!/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
|