Add PyQt 5.8 PyPI test envs

This commit is contained in:
Florian Bruhin 2017-02-17 07:02:13 +01:00
parent ba21fb3784
commit 7596409962
2 changed files with 28 additions and 2 deletions

View File

@ -21,14 +21,18 @@ matrix:
- os: linux - os: linux
env: DOCKER=ubuntu-xenial env: DOCKER=ubuntu-xenial
services: docker services: docker
- os: linux
language: python
python: 3.6
env: TESTENV=py36-pyqt571
- os: linux - os: linux
language: python language: python
python: 3.5 python: 3.5
env: TESTENV=py35-pyqt571 env: TESTENV=py35-pyqt58
- os: linux - os: linux
language: python language: python
python: 3.6 python: 3.6
env: TESTENV=py36-pyqt571 env: TESTENV=py36-pyqt58
- os: osx - os: osx
env: TESTENV=py36 OSX=elcapitan env: TESTENV=py36 OSX=elcapitan
osx_image: xcode7.3 osx_image: xcode7.3

22
tox.ini
View File

@ -90,6 +90,28 @@ deps =
PyQt5==5.7.1 PyQt5==5.7.1
commands = {envpython} scripts/dev/run_pytest.py {posargs:tests} commands = {envpython} scripts/dev/run_pytest.py {posargs:tests}
[testenv:py35-pyqt58]
basepython = python3.5
setenv =
{[testenv]setenv}
QUTE_BDD_WEBENGINE=true
passenv = {[testenv]passenv}
deps =
{[testenv]deps}
PyQt5==5.8.0
commands = {envpython} scripts/dev/run_pytest.py {posargs:tests}
[testenv:py36-pyqt58]
basepython = python3.6
setenv =
{[testenv]setenv}
QUTE_BDD_WEBENGINE=true
passenv = {[testenv]passenv}
deps =
{[testenv]deps}
PyQt5==5.8.0
commands = {envpython} scripts/dev/run_pytest.py {posargs:tests}
# other envs # other envs
[testenv:mkvenv] [testenv:mkvenv]