From 87e679a8116b060269a24d8794ad8b90a6f5c490 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 13 Feb 2017 11:01:32 -0500 Subject: [PATCH] Test against different python-jira versions. --- .travis.yml | 4 ++++ tox.ini | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 37288776d..0d85ac508 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,11 @@ before_install: - pip install responses - pip install PySimpleSOAP - cd $TRAVIS_BUILD_DIR +env: + - JIRAVERSION=1.0.7 + - JIRAVERSION=1.0.10 install: + - pip install jira==$JIRAVERSION - pip install .[jira,megaplan,activecollab,bts] - pip install codecov - pip install coverage diff --git a/tox.ini b/tox.ini index 8103aa1b2..8327342a6 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,15 @@ [tox] -envlist = py27,py34,py35 +envlist = py{27,35}-jira{107,1010} [testenv] commands = python setup.py test setenv = XDG_CACHE_HOME={envtmpdir}/ + # NOTE: # * as of 2016-10-05 python-megaplan does not support python3, so a # github repository with the needed fixes has been created deps = pysimplesoap - py34: git+https://github.com/wfranzini/python-megaplan.git py35: git+https://github.com/wfranzini/python-megaplan.git + jira107: jira==1.0.7 + jira1010: jira==1.0.10