Skip to content

Commit

Permalink
switch CircleCI config to pytest (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
hmeine committed Feb 20, 2022
1 parent ed30205 commit 2006721
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
- python/load-cache:
key: PyQt5
- run:
command: pip install numpy PyQt5 nose
command: pip install numpy PyQt5 pytest
name: Install Dependencies (PyQt5)
- python/save-cache
- run:
command: nosetests
command: pytest
environment:
QT_API: pyqt5
name: Test (PyQt5)
Expand All @@ -28,11 +28,11 @@ jobs:
- python/load-cache:
key: PySide2
- run:
command: pip install numpy PySide2 nose
command: pip install numpy PySide2 pytest
name: Install Dependencies (PySide2)
- python/save-cache
- run:
command: nosetests
command: pytest
environment:
QT_API: pyside2
name: Test (PySide2)
Expand All @@ -44,11 +44,11 @@ jobs:
- python/load-cache:
key: PySide6
- run:
command: pip install numpy PySide6 nose
command: pip install numpy PySide6 pytest
name: Install Dependencies (PySide6)
- python/save-cache
- run:
command: nosetests
command: pytest
environment:
QT_API: pyside6
name: Test (PySide6)
Expand Down

0 comments on commit 2006721

Please sign in to comment.