-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
47 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,32 +27,32 @@ jobs: | |
- uses: pre-commit/[email protected] | ||
# The visualize extra is only tested with pinned reqs because different | ||
# Matplotlib versions have slightly different outputs. | ||
test: | ||
strategy: | ||
max-parallel: 12 # All in parallel. | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
exclude: | ||
# To cut down on runtime since Mac seems to take the longest. | ||
- os: macos-latest | ||
python-version: "3.9" | ||
- os: macos-latest | ||
python-version: "3.10" | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Upgrade pip | ||
run: python -m pip install --upgrade pip | ||
- name: Install core deps | ||
run: pip install .[dev] | ||
- name: Test core | ||
run: > | ||
pytest tests/archives tests/emitters tests/schedulers | ||
# test: | ||
# strategy: | ||
# max-parallel: 12 # All in parallel. | ||
# matrix: | ||
# os: [ubuntu-latest, macos-latest, windows-latest] | ||
# python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
# exclude: | ||
# # To cut down on runtime since Mac seems to take the longest. | ||
# - os: macos-latest | ||
# python-version: "3.9" | ||
# - os: macos-latest | ||
# python-version: "3.10" | ||
# runs-on: ${{ matrix.os }} | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - name: Set up Python ${{ matrix.python-version }} | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: ${{ matrix.python-version }} | ||
# - name: Upgrade pip | ||
# run: python -m pip install --upgrade pip | ||
# - name: Install core deps | ||
# run: pip install .[dev] | ||
# - name: Test core | ||
# run: > | ||
# pytest tests/archives tests/emitters tests/schedulers | ||
pin: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters