Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ env:
- PYTEST_QT_API=pyqt4 PYQT_PACKAGE="pyqt=4.*" PYTHON_VERSION=3.4
- PYTEST_QT_API=pyqt4v2 PYQT_PACKAGE="pyqt=4.*" PYTHON_VERSION=3.4
- PYTEST_QT_API=pyside PYQT_PACKAGE="pyside=1.*" PYTHON_VERSION=3.4
- PYTEST_QT_API=pyqt5 PYQT_PACKAGE="pyqt=5.*" PYTHON_VERSION=3.4

- PYTEST_QT_API=pyqt5 PYQT_PACKAGE="pyqt=5.*" PYTHON_VERSION=3.5
- PYTEST_QT_API=pyside2 PYQT_PACKAGE="pyside2=2.*" PYTHON_VERSION=3.5

- PYTEST_QT_API=pyqt5 PYQT_PACKAGE="pyqt=5.*" PYTHON_VERSION=3.6
- PYTEST_QT_API=pyside2 PYQT_PACKAGE="pyside2=2.*" PYTHON_VERSION=3.6

install:
- sudo apt-get update

Expand Down
10 changes: 9 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,21 @@ environment:
- PYTHON_VERSION: "3.4"
PYTEST_QT_API: "pyside"
CONDA_DEPENDENCIES: "pytest pyside=1.*"
- PYTHON_VERSION: "3.4"

- PYTHON_VERSION: "3.5"
PYTEST_QT_API: "pyqt5"
CONDA_DEPENDENCIES: "pytest pyqt=5.*"
- PYTHON_VERSION: "3.5"
PYTEST_QT_API: "pyside2"
CONDA_DEPENDENCIES: "pytest pyside2=2.*"

- PYTHON_VERSION: "3.6"
PYTEST_QT_API: "pyqt5"
CONDA_DEPENDENCIES: "pytest pyqt=5.*"
- PYTHON_VERSION: "3.6"
PYTEST_QT_API: "pyside2"
CONDA_DEPENDENCIES: "pytest pyside2=2.*"

platform:
-x64

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def run_tests(self):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Desktop Environment :: Window Managers',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
Expand Down