Skip to content

Commit c05c0fe

Browse files
committed
fix: ci - maybe?
1 parent c2766f0 commit c05c0fe

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
python-version: ['3.8', '3.9', '3.10']
30-
platform: [ubuntu-latest, macos-latest, windows-latest]
30+
platform: [ubuntu-latest]
3131

3232
steps:
3333
- name: Cancel Previous Runs
@@ -43,15 +43,14 @@ jobs:
4343
python-version: ${{ matrix.python-version }}
4444
cache: 'pip'
4545

46+
4647
- name: Install dependencies
4748
run: |
48-
python -m pip install -U pip
49-
python -m pip install tox tox-gh-actions
49+
python -m pip install --upgrade pip
50+
pip install -e ".[test]"
5051
51-
- name: Test with tox
52-
run: python -m tox
53-
env:
54-
PLATFORM: ${{ matrix.platform }}
52+
- name: Test
53+
run: pytest -v --color=yes --cov=pymmcore_plus --cov-report=xml
5554

5655
- name: Coverage
5756
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)