]> git.phdru.name Git - sqlconvert.git/blobdiff - tests/Makefile
Tests: Use tox instead of tests/Makefile
[sqlconvert.git] / tests / Makefile
diff --git a/tests/Makefile b/tests/Makefile
deleted file mode 100644 (file)
index 444794b..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-
-.PHONY: all
-all: nodb postgres sqlite clean
-
-.PHONY: nodb
-nodb:
-       PYTHONPATH=.. python -m  pytest
-
-.PHONY: postgres
-postgres:
-       createdb test
-       PYTHONPATH=.. python -m  pytest -D postgres:///test
-       dropdb test
-
-.PHONY: sqlite
-sqlite:
-       PYTHONPATH=.. python -m  pytest -D sqlite:///tmp/test.sqdb
-       rm -f /tmp/test.sqdb
-
-.PHONY: clean
-clean:
-       rm -f *.tmp