Skip to content

Commit

Permalink
move mypy back to testing job
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamd committed Oct 19, 2020
1 parent d958040 commit 2645959
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/testing.yml
Expand Up @@ -41,9 +41,6 @@ jobs:
# exit-zero treats all errors as warnings.
flake8 --count --exit-zero --max-complexity=20 --statistics ${{ matrix.package }}
- name: Lint with mypy
run: mypy --namespace-package ${{ matrix.package }}/emmet

test:
runs-on: ubuntu-latest
strategy:
Expand All @@ -69,6 +66,10 @@ jobs:
run: |
pip install -e ${{ matrix.package }}/
- name: Lint with mypy
run: mypy --namespace-package ${{ matrix.package }}/emmet

- name: Test with pytest
run: |
pytest --cov=emmet --cov-report=xml tests/${{ matrix.package }}
Expand Down

0 comments on commit 2645959

Please sign in to comment.