[Pkg-bitcoin-commits] [python-quamash] 252/269: Don't run PySide tests on Python 3.5

Jonas Smedegaard dr at jones.dk
Fri Nov 24 11:26:41 UTC 2017


This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository python-quamash.

commit 1adcbdfd39c2ece0fe1a2d475530f7271567b4a1
Author: Mark Harviston <mark.harviston at gmail.com>
Date:   Tue Nov 17 20:18:34 2015 -0800

    Don't run PySide tests on Python 3.5
    
    PySide doesn't support Python 3.5
---
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 2d772d0..8dcbbb3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -52,7 +52,7 @@ install:
   # Builds Complete
   - popd
   # PySide
-  - pip install --find-links wheelhouse/ pyside
+  - if [ $TRAVIS_PYTHON_VERSION != '3.5' ]; then pip install --find-links wheelhouse/ pyside; fi
   # Python 3.3
   - if echo $TRAVIS_PYTHON_VERSION | grep -q '^3.3'; then pip install asyncio; fi
   # flake8 style checker
@@ -60,7 +60,7 @@ install:
 script:
   - flake8
   - flake8 --select=D1 quamash/*.py
-  - QUAMASH_QTIMPL=PySide py.test
+  - if [ $TRAVIS_PYTHON_VERSION != '3.5']; then QUAMASH_QTIMPL=PySide py.test; fi
   - QUAMASH_QTIMPL=PyQt4 py.test
   - QUAMASH_QTIMPL=PyQt5 py.test
 cache:

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-bitcoin/python-quamash.git



More information about the Pkg-bitcoin-commits mailing list