forked from piskvorky/sqlitedict
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
13 lines (12 loc) · 464 Bytes
/
Copy pathMakefile
File metadata and controls
13 lines (12 loc) · 464 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
test-all:
@ echo '- removing old data'
@ rm -f -R tests/db/
@ echo '- creating new tests/db/ (required for tests)'
@ mkdir -p tests/db
@ nosetests --cover-package=sqlitedict --verbosity=1 --cover-erase -l DEBUG
test-all-with-coverage:
@ echo '- removing old data'
@ rm -f -R tests/db/
@ echo '- creating new tests/db/ (required for tests)'
@ mkdir -p tests/db
@ nosetests --cover-package=sqlitedict --verbosity=1 --cover-erase --with-coverage -l DEBUG