Skip to content

Commit

Permalink
Testing: Move Python 2.7/PyQt5 tests to Travis too
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed May 22, 2017
1 parent 4fed52c commit 27e5683
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ sudo: false

matrix:
include:
# This never ends!
#- python: "2.7"
# env: TEST_MODULES=false
# os: linux
- python: "2.7"
env: TEST_MODULES=false USE_PYQT=pyqt5
os: linux
- python: "2.7"
env: TEST_MODULES=true USE_PYQT=pyqt4
os: linux
Expand All @@ -19,6 +18,8 @@ matrix:
- python: "3.5"
env: TEST_MODULES=true USE_PYQT=pyqt4
os: linux
# This slot test runs our tests only with pip
# packages
- python: "3.5"
env: TEST_MODULES=false USE_PYQT=pyqt5
os: linux
Expand Down
5 changes: 5 additions & 0 deletions spyder/plugins/tests/test_ipythonconsole.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ def close_widget():
return widget


# Skip in Python 2 because it times out on Travis and CircleCI
if PY2:
pytest.skip()


#==============================================================================
# Tests
#==============================================================================
Expand Down

0 comments on commit 27e5683

Please sign in to comment.