Revision bc23eb95794e00aa9f925c1dea9da61b7ba218e7 authored by Antoine R. Dumont (@ardumont) on 20 January 2016, 10:14:20 UTC, committed by Antoine R. Dumont (@ardumont) on 20 January 2016, 11:08:38 UTC
1 parent d05afde
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