]> git.phdru.name Git - sqlconvert.git/blob - tests/Makefile
Remove publish-docs
[sqlconvert.git] / tests / Makefile
1
2 .PHONY: all
3 all: nodb postgres sqlite clean
4
5 .PHONY: nodb
6 nodb:
7         PYTHONPATH=.. python -m  pytest
8
9 .PHONY: postgres
10 postgres:
11         createdb test
12         PYTHONPATH=.. python -m  pytest -D postgres:///test
13         dropdb test
14
15 .PHONY: sqlite
16 sqlite:
17         PYTHONPATH=.. python -m  pytest -D sqlite:///tmp/test.sqdb
18         rm -f /tmp/test.sqdb
19
20 .PHONY: clean
21 clean:
22         rm -f *.tmp