Skip to content

Commit

Permalink
Skip ci with pyqt4v2 because of unknown error
Browse files Browse the repository at this point in the history
```
_______________ ERROR collecting tests/labelme_tests/test_app.py _______________
tests/labelme_tests/test_app.py:5: in <module>
    import labelme.app
/usr/share/miniconda/envs/test/lib/python2.7/site-packages/labelme/__init__.py:6: in <module>
    from qtpy import QT_VERSION
/usr/share/miniconda/envs/test/lib/python2.7/site-packages/qtpy/__init__.py:237: in <module>
    from . import QtDataVisualization as QtDatavisualization
/usr/share/miniconda/envs/test/lib/python2.7/site-packages/qtpy/QtDataVisualization.py:22: in <module>
    raise PythonQtError('No Qt bindings could be found')
E   PythonQtError: No Qt bindings could be found
```
  • Loading branch information
wkentaro committed Sep 27, 2021
1 parent 3f9350b commit f961f5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Test with pytest
shell: bash -l {0}
if: matrix.os != 'windows-latest'
if: matrix.os != 'windows-latest' && matrix.PYTEST_QT_API != 'pyqt4v2'
env:
PYTEST_QT_API: ${{ matrix.PYTEST_QT_API }}
run: |
Expand All @@ -112,7 +112,7 @@ jobs:
- name: Run examples
shell: bash -l {0}
if: matrix.os != 'windows-latest'
if: matrix.os != 'windows-latest' && matrix.PYTEST_QT_API != 'pyqt4v2'
env:
MPLBACKEND: agg
run: |
Expand Down

0 comments on commit f961f5e

Please sign in to comment.