Revision b8c480f5b64ea7489c80c06984e951c18524f902 authored by Nicolas Dandrimont on 30 June 2017, 12:44:01 UTC, committed by Nicolas Dandrimont on 30 June 2017, 12:44:01 UTC
1 parent fb39e1c
Raw File
Makefile.local
# run only tests that do not require database setup
test-nodb:
	$(NOSE) $(NOSEFLAGS) -a '!db'

# run only tests that do require database setup
test-db:
	$(NOSE) $(NOSEFLAGS) -a 'db'
back to top