From 71f747a37c286bb774cfd726b075f7f13f7e8f34 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Thu, 18 Jul 2024 18:38:05 -0400 Subject: [PATCH] ci: Skip tests on Windows PyPy --- .github/workflows/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 82424094..448777c1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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