Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Workflows #317

Merged
merged 38 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
31671c2
downgrade mac-os to 13
pauladkisson Apr 29, 2024
9a0afd2
downgrade to macos-12
pauladkisson Apr 29, 2024
edb9e85
removed setup-conda
pauladkisson Apr 29, 2024
d229fc6
added macos-13 to update testing data
pauladkisson Apr 29, 2024
d4a8330
removed conda
pauladkisson Apr 29, 2024
0886d36
added 3.12
pauladkisson Apr 29, 2024
031d80c
added quotes to version numbers
pauladkisson Apr 29, 2024
7b422a3
Merge branch 'main' into workflow
pauladkisson Apr 29, 2024
c135135
added macos-latest
pauladkisson Apr 29, 2024
c644eba
removed macos-latest
pauladkisson Apr 29, 2024
de710b1
added dev testing
pauladkisson Apr 30, 2024
6c7250a
unpin xdist
pauladkisson Apr 30, 2024
8429225
condense tests into 1 line for better output
pauladkisson Apr 30, 2024
c46a6cb
downgrade python setup for wheel support
pauladkisson Apr 30, 2024
9cf698c
added macos-latest with scanimage skips
pauladkisson Apr 30, 2024
7c9e8a2
continue on collection errors
pauladkisson Apr 30, 2024
1c01b40
added platform check for scanimage import
pauladkisson Apr 30, 2024
0fdc21d
added platform check for scanimage import
pauladkisson Apr 30, 2024
ef308b1
switched to try-except
pauladkisson Apr 30, 2024
06fb8c0
fixed ignores
pauladkisson Apr 30, 2024
fa3280a
fixed ignores
pauladkisson Apr 30, 2024
041cde7
updated dev install
pauladkisson Apr 30, 2024
ba6050f
fixed ignores
pauladkisson Apr 30, 2024
69e86fe
added formatting
pauladkisson Apr 30, 2024
062c043
added macos-latest to update-testing-data
pauladkisson Apr 30, 2024
4c35b05
switched back to if-else import
pauladkisson Apr 30, 2024
4f44179
updated changelog
pauladkisson Apr 30, 2024
c95957d
try pytestmark
CodyCBakerPhD May 1, 2024
2821f04
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 1, 2024
f90d4bf
remove CI split
CodyCBakerPhD May 1, 2024
e40d6c4
add reason
CodyCBakerPhD May 1, 2024
ef563ad
merge
pauladkisson May 1, 2024
ed5452a
moved skips to inside pytest files so that they get skipped when runn…
pauladkisson May 1, 2024
56e9f34
updated codecov to v4
pauladkisson May 1, 2024
a7c6327
lowercase darwin
pauladkisson May 1, 2024
d229674
captialized Darwin
pauladkisson May 1, 2024
2602fe8
add skips to test_io
pauladkisson May 1, 2024
f4d0e68
added concurrency to testing workflows
pauladkisson May 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", 3.11]
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
CodyCBakerPhD marked this conversation as resolved.
Show resolved Hide resolved
os: [ubuntu-latest, windows-latest, macos-13]
steps:
- uses: s-weigand/setup-conda@v1
- uses: actions/checkout@v2
- run: git fetch --prune --unshallow --tags
- name: Setup Python ${{ matrix.python-version }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/update-testing-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-latest, macos-13] # macos-13 is the latest version of macOS with Intel chip
steps:
- uses: s-weigand/setup-conda@v1
- uses: actions/checkout@v2
- run: git fetch --prune --unshallow --tags
- name: Setup Python 3.11
Expand Down
Loading