Skip to content

Commit

Permalink
Merge pull request #151 from pauldmccarthy/ci/condition-on-wrong-job
Browse files Browse the repository at this point in the history
CI: Skip indexed-gzip tests on windows, but run zran tests
  • Loading branch information
pauldmccarthy authored Nov 7, 2024
2 parents a2294d8 + cafad77 commit 8fee672
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ jobs:
- name: Build indexed_gzip
run: bash ./.ci/build_dev_indexed_gzip.sh "$ENV_DIR"
- name: Run tests
if: ${{ !(matrix.os == 'windows-latest' &&
(matrix.python-version == '3.12' ||
matrix.python-version == '3.13')) }}
run: bash ./.ci/run_tests.sh "$ENV_DIR"


Expand Down Expand Up @@ -229,7 +232,4 @@ jobs:
- name: Build indexed_gzip
run: bash ./.ci/build_dev_indexed_gzip.sh "$ENV_DIR"
- name: Run tests
if: ${{ !(matrix.os == 'windows-latest' &&
(matrix.python-version == '3.12' ||
matrix.python-version == '3.13')) }}
run: bash ./.ci/run_tests.sh "$ENV_DIR"

0 comments on commit 8fee672

Please sign in to comment.