]> git.phdru.name Git - sqlconvert.git/commitdiff
Fix(Py3): Use a different test file for Python 3.5+
authorOleg Broytman <phd@phdru.name>
Wed, 13 Dec 2023 19:39:27 +0000 (22:39 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 13 Dec 2023 19:47:45 +0000 (22:47 +0300)
tests/mysql2sql/test.out2 [moved from tests/mysql2sql/test.out with 100% similarity]
tests/mysql2sql/test.out3 [new file with mode: 0644]
tox.ini

diff --git a/tests/mysql2sql/test.out3 b/tests/mysql2sql/test.out3
new file mode 100644 (file)
index 0000000..462e2be
--- /dev/null
@@ -0,0 +1,20 @@
+CREATE TABLE mytable (
+  id int(10) unsigned NOT NULL AUTO_INCREMENT,
+  date datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  flag tinyint(4) NOT NULL DEFAULT '0',
+  PRIMARY KEY (id),
+  UNIQUE KEY date (date)
+) ENGINE="InnoDB" DEFAULT CHARSET=utf8;
+INSERT INTO /* inline comment */ mytable VALUES (1, 'ั‚ะตัั‚');
+SELECT * FROM mytable; -- line-comment"
+
+;
+INSERT INTO "MyTable" ("Id", "Name")
+VALUES (1, 'one');
+INSERT INTO mytable VALUES (1, 'one');
+
+INSERT INTO mytable VALUES (2, 'two');
+INSERT INTO mytable (id, name) VALUES (1, 'one');
+
+INSERT INTO mytable (id, name) VALUES (2, 'two');
+-- The end
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]