Skip to content

Commit

Permalink
ci: Skip tests on Windows PyPy
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jul 18, 2024
1 parent 5db1ed3 commit 71f747a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ jobs:
cache: pip
cache-dependency-path: setup.py
- run: pip install -e .[test]
- run: pytest tests --cov scrapyd
- if: matrix.os != 'macos-latest' || matrix.python-version != 'pypy-3.9'
- if: matrix.python-version != 'pypy-3.9' || matrix.os != 'windows-latest'
run: pytest tests --cov scrapyd
- if: matrix.python-version != 'pypy-3.9' || matrix.os != 'macos-latest'
name: Run integration tests
run: |
printf "[scrapyd]\nusername = hello12345\npassword = 67890world\n" > scrapyd.conf
Expand Down

0 comments on commit 71f747a

Please sign in to comment.