summaryrefslogtreecommitdiff
path: root/ISSUES.txt
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2012-06-15 16:39:16 +0200
committerholger krekel <holger@merlinux.eu>2012-06-15 16:39:16 +0200
commit215566ac63b3a62b38e9e843723aa1394d157223 (patch)
treecc167fd0c11a957672d25d3ff7888e8b759e2090 /ISSUES.txt
parent88cefd03bf198f1fb376d0d81f5c2544548cbc6a (diff)
downloadtox-215566ac63b3a62b38e9e843723aa1394d157223.tar.gz
add two issues that i'd like to resolve soon
Diffstat (limited to 'ISSUES.txt')
-rw-r--r--ISSUES.txt47
1 files changed, 47 insertions, 0 deletions
diff --git a/ISSUES.txt b/ISSUES.txt
index bf40042..a5dc841 100644
--- a/ISSUES.txt
+++ b/ISSUES.txt
@@ -1,3 +1,50 @@
+allow config overlays
+-----------------------------------------------------------
+
+tags: 1.5 feature
+
+You can specify wildcards in section titles.
+
+ [testenv]
+ testsrc=testing/**.py
+ commands=py.test {posargs}
+
+ [testenv:py3*]
+ use2to3 = True
+
+ [testenv:py32]
+ deps =
+ ...
+
+Configuration values are now looked up in a stricter-matches-first
+manner: If environment "py32" is considered then first the
+section under py32, then py3*, then testenv.
+
+
+support 2to3 configurations / test file postprocessing
+-----------------------------------------------------------
+
+tags: 1.5 feature
+
+Tests should be copied and transformed before being executed.
+Setup a test definition::
+
+ [testenv]
+ testsrc=testing/**.py
+ commands=py.test {posargs}
+
+ [testenv:py3*]
+ use2to3 = True
+
+would transform all specified test files for all py3 environments
+such that a subsequent test run::
+
+ $ tox -e py25,py32 testing/test_hello.py
+
+causes a transformation of the test files to prepare test runs on
+Python3 interpreters. The ``posargs`` specified files will be rewritten
+to point to the transformed test files.
+
allow user-specific python interpreters
------------------------------------------------