Skip to content

Commit

Permalink
temporarily disable Windows vanilla tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Jul 24, 2024
1 parent fe1b9a8 commit 6ad7e98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ jobs:
platform:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: 🛒 Checkout
uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion lkdev/workflows/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
META_PYTHON = "3.11"
PYTHONS = ["3.10", "3.11", "3.12"]
PLATFORMS = ["ubuntu-latest", "macos-latest", "windows-latest"]
VANILLA_PLATFORMS = ["ubuntu-latest", "macos-latest"]
FILTER_PATHS = [
"lenskit/**.py",
"**pyproject.toml",
Expand Down Expand Up @@ -371,7 +372,7 @@ def jobs_test_matrix() -> dict[str, GHJob]:
JobOptions(
"vanilla",
"Vanilla Python ${{matrix.python}} on ${{matrix.platform}}",
matrix={"python": PYTHONS, "platform": PLATFORMS},
matrix={"python": PYTHONS, "platform": VANILLA_PLATFORMS},
)
),
"nojit": test_job(
Expand Down

0 comments on commit 6ad7e98

Please sign in to comment.