diff options
| author | cpopa <devnull@localhost> | 2014-04-25 10:59:38 +0300 |
|---|---|---|
| committer | cpopa <devnull@localhost> | 2014-04-25 10:59:38 +0300 |
| commit | 485810ee5fd90cc1f508371a74e69424bfc942e2 (patch) | |
| tree | 72a15c641a142eb78fa211e57f33fd99f8a634fd /tox.ini | |
| parent | 3497aa7f5cf6dd9be074b964fe7a16b82fb4d8a3 (diff) | |
| download | astroid-485810ee5fd90cc1f508371a74e69424bfc942e2.tar.gz | |
Add a tox.ini file.
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +[tox]
+# official list is
+#envlist = py25, py26, py27, py32, py33
+# though 2.5 support is known to be broken...
+envlist = py27, py33
+[testenv]
+deps =
+ logilab-common
+
+[testenv:py27]
+commands =
+ cd {envsitepackagesdir}/astroid/test
+ py27 -Wi -m unittest discover -p "unittest*.py"
+
+[testenv:py33]
+commands =
+ cd {envsitepackagesdir}/astroid/test
+ py33 -Wi -m unittest discover -p "unittest*.py"
\ No newline at end of file |
