Skip to content

Commit

Permalink
update requirements.txt for linux (#617)
Browse files Browse the repository at this point in the history
  • Loading branch information
jopohl authored Feb 20, 2019
1 parent 3966d56 commit 8666216
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 2 additions & 4 deletions data/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ jobs:
displayName: 'Run pytest with coverage'
condition: eq(variables['python.version'], '3.7')
- script: |
touch tests/show_gui
pytest --junitxml=junit/test-results.xml tests
- script: pytest --junitxml=junit/test-results.xml tests
displayName: 'Run pytest without coverage'
condition: ne(variables['python.version'], '3.7')

Expand All @@ -67,7 +65,7 @@ jobs:
inputs:
checkCoverage: true
allowCoverageVariance: true
coverageVariance: 0.15
coverageVariance: 0.2
coverageDeltaType: percentage
coverageType: lines

Expand Down
3 changes: 2 additions & 1 deletion data/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
numpy; sys_platform != 'win32'
numpy!=1.16.0; sys_platform == 'win32'
pyqt5; sys_platform != 'win32'
pyqt5; sys_platform != 'win32' and sys_platform != 'linux'
pyqt5!=5.11.1,!=5.11.2,!=5.11.3; sys_platform == 'win32'
pyqt5!=5.12; sys_platform == 'linux'
psutil
pyzmq
cython

0 comments on commit 8666216

Please sign in to comment.