X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=blobdiff_plain;f=tests%2FMakefile;fp=tests%2FMakefile;h=444794bf8c284281e5c7b89b87c3917f8b7a09b8;hp=6e7d1d837dfb435d3bc8b287a5c577d5b11cd48a;hb=26ca2f53d8fe333bb2448ea412e82be415cb3fd2;hpb=b8225ccc168f04789db1935a90462b5cb0bbd6a6 diff --git a/tests/Makefile b/tests/Makefile index 6e7d1d8..444794b 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,6 +1,6 @@ .PHONY: all -all: nodb postgres clean +all: nodb postgres sqlite clean .PHONY: nodb nodb: @@ -12,6 +12,11 @@ postgres: 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