ci: add mkdir step for mypy (#5927)

* ci: add mkdir step for mypy

* updating DIRECTORY.md

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
Michael Currin
2022-01-26 17:35:51 +02:00
committed by GitHub
parent 9af2eef9b3
commit 7423875cef
2 changed files with 4 additions and 1 deletions

View File

@ -21,7 +21,9 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools six wheel
python -m pip install mypy pytest-cov -r requirements.txt
- run: mypy --ignore-missing-imports --install-types --non-interactive .
- run: |
mkdir -p .mypy_cache
mypy --ignore-missing-imports --install-types --non-interactive .
- name: Run tests
run: pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/validate_solutions.py --cov-report=term-missing:skip-covered --cov=. .
- if: ${{ success() }}