diff options
author | Dima Kurguzov <koorgoo@gmail.com> | 2017-04-12 08:24:04 +0300 |
---|---|---|
committer | Asif Saifuddin Auvi <auvipy@users.noreply.github.com> | 2017-04-12 11:24:04 +0600 |
commit | bf820b20b022556c72402565f0ae50124017d6fe (patch) | |
tree | 9dfb369911a383132c42835f377d9b24160c2ab4 /tox.ini | |
parent | 35270dd970de01fd164a9a724e46f5b7bb8196cb (diff) | |
download | kombu-bf820b20b022556c72402565f0ae50124017d6fe.tar.gz |
Fix byte string for kazoo.Queue in Python 3 (#713)
* Fix byte string for kazoo.Queue in Python 3
* Add test for message conversion to bytes in ZooKeeper channel
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,6 +4,7 @@ envlist = pypy 3.4 3.5 + 3.6 flake8 flakeplus apicheck @@ -24,13 +25,14 @@ deps= flake8,flakeplus,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt commands = pip install -U -r{toxinidir}/requirements/dev.txt - py.test -xv + py.test -xv {posargs} basepython = 2.7,flakeplus,flake8,apicheck,linkcheck,cov,pydocstyle: python2.7 3.3: python3.3 3.4: python3.4 3.5: python3.5 + 3.6: python3.6 pypy: pypy jython: jython |