summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2016-05-02 21:17:17 +0200
committerVictor Stinner <vstinner@redhat.com>2016-05-02 22:31:05 +0200
commitbdf664bbdf29e32a0e88cc971826029f418d5fff (patch)
tree17c46de4ca38c0e52337c14c31be4442e32ce839 /tox.ini
parent79f350852e1cb57fdfc493d68cd87d480b36257c (diff)
downloadtrove-bdf664bbdf29e32a0e88cc971826029f418d5fff.tar.gz
Port designate code to Python 3
* Replace map() with list-comprehension to get a list on Python 3. * Unicode dance: encode text to UTF-8 for MD5, decode Base32 from ASCII to get text. * tox.ini: test_designate_driver and test_datastore_versions to Python 3.4 Partially implements: blueprint trove-python3 Change-Id: I1aa5387908b3f108487ed731cee5f7d9bbfd7d69
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 4 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index c4b9a5e2..d46eca11 100644
--- a/tox.ini
+++ b/tox.ini
@@ -40,7 +40,10 @@ commands =
trove/tests/unittests/common/test_stream_codecs.py \
trove/tests/unittests/common/test_template.py \
trove/tests/unittests/common/test_utils.py \
- trove/tests/unittests/common/test_wsgi.py
+ trove/tests/unittests/common/test_wsgi.py \
+ trove/tests/unittests/datastore/test_datastore_versions.py \
+ trove/tests/unittests/dns/test_designate_driver.py
+
[testenv:debug]
commands = oslo_debug_helper {posargs}