]> git.phdru.name Git - sqlconvert.git/blobdiff - tox.ini
Fix(Py3): Use a different test file for Python 3.5+
[sqlconvert.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index 6eaedf2eed34482ca1b10ea773b9c5db5ba1d238..78a7970f05ee2e33121022bdaef338cd8490a7bd 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 minversion = 3.15
-envlist = py27,py3{4,5,6,7,8,9,10,11}{,-sqlite},py{27,36,311}-flake8
+envlist = py27,py3{4,5,6,7,8,9,10,11}{,-m2s,-sqlite},py{27,36,311}-flake8
 
 # Base test environment settings
 [testenv]
@@ -22,8 +22,19 @@ whitelist_externals =
 commands =
     {[testenv]commands}
     {envpython} -m pytest
+
+[testenv:py{27,34}-m2s]
+commands =
+    {[testenv]commands}
+    {envpython} {envbindir}/mysql2sql -P demo/demo.sql test.out
+    cmp.py -i tests/mysql2sql/test.out2 test.out
+    rm.py -f test.out
+
+[testenv:py{35,36,37,38,39,310,311}-m2s]
+commands =
+    {[testenv]commands}
     {envpython} {envbindir}/mysql2sql -P demo/demo.sql test.out
-    cmp.py -i tests/mysql2sql/test.out test.out
+    cmp.py -i tests/mysql2sql/test.out3 test.out
     rm.py -f test.out
 
 [testenv:py{27,34,35,36,37,38,39,310,311}-sqlite]