-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
sudo apt install libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xfixes0 x11-utils libgl1 libegl1 | ||
python -m pip install --upgrade pip | ||
export QT_DEBUG_PLUGINS=1 | ||
pip install flake8 pytest pytest-cov pytest-qt pytest-xvfb setuptools wheel numpy h5py ${{ inputs.qt5 }} | ||
pip install flake8 pytest pytest-cov pytest-qt pytest-xdist pytest-xvfb setuptools wheel numpy h5py ${{ inputs.qt5 }} | ||
git branch | ||
pip install -e . | ||
- name: create local pymodaq folder and setting permissions | ||
|
@@ -41,7 +41,7 @@ jobs: | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude=docs | ||
- name: Test with pytest | ||
run: | | ||
pytest --cov=pymodaq --cov-report=xml | ||
pytest --cov=pymodaq --cov-report=xml -n auto | ||
- name: Upload coverage to codecov.io | ||
uses: codecov/[email protected] | ||
with: | ||
|