Skip to content

Commit b2d9c4b

Browse files
committed
fix path issue; Only run MacOS tests with latest python version (MacOs workflow tends to time out)
1 parent 71d5a51 commit b2d9c4b

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/workflows/linux-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,8 @@ jobs:
3232
python -m pip install pytest
3333
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3434
35+
- name: Install package
36+
run: pip install -e .
37+
3538
- name: Test with pytest
3639
run: pytest tests/

.github/workflows/macos-test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This workflow runs Unit-Tests for compatibility on MacOS
2-
# with the oldest and latest supported Python version.
2+
# with the latest supported Python version.
33

44

55
name: MacOS Test
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
python-version: ['3.10', '3.14']
16+
python-version: ['3.14']
1717

1818
steps:
1919

@@ -36,5 +36,8 @@ jobs:
3636
run: |
3737
pip install pytest pytest_mock pyfakefs
3838
39+
- name: Install package
40+
run: pip install -e .
41+
3942
- name: Test with pytest
4043
run: pytest tests/

.github/workflows/windows-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,8 @@ jobs:
3232
run: |
3333
pip install pytest pytest_mock pyfakefs
3434
35+
- name: Install package
36+
run: pip install -e .
37+
3538
- name: Test with pytest
3639
run: pytest tests/

0 commit comments

Comments
 (0)