pip install --editable .

This commit is contained in:
Christian Clauss 2021-10-22 02:50:28 +02:00 committed by GitHub
parent b8fb105475
commit d765461f71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,8 @@ jobs:
- run: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88
--show-source --statistics
- run: isort --check-only --profile black . || true
- run: pip install -r requirements.txt || pip install --editable . || true
# - run: pip install -r requirements.txt || pip install --editable . || true
- run: pip install --editable .
- run: mkdir --parents --verbose .mypy_cache
- run: mypy --ignore-missing-imports --install-types --non-interactive . || true
- run: pytest . || true