diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a8ba52a..1b9a7b1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,12 +28,13 @@ jobs: pip install pytest-cov pip install coveralls pip install . + - name: Pylint + if: ${{ ( matrix.os != 'windows-latest' ) }} + run: pylint -E --disable=E1101 py/minimint/*py - name: Test - run: | - pytest --cov=minimint -s - pylint -E --disable=E1101 py/minimint/*py + run: pytest --cov=minimint -s - name: Coveralls - if: ${{ success() }} + if: ${{ success() && (matrix.os != 'windows-latest') }} run: coveralls --service=github env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}