Revision f52e74922b25c27f7f423428b1e7e5c5b923188c authored by Nicolas Dandrimont on 06 January 2016, 13:53:17 UTC, committed by Nicolas Dandrimont on 06 January 2016, 13:55:33 UTC
1 parent d641722
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