Revision 09102e863c069e46ea6b60cd0a0aab8f5a7df815 authored by Antoine R. Dumont (@ardumont) on 17 November 2015, 13:02:35 UTC, committed by Antoine R. Dumont (@ardumont) on 17 November 2015, 13:02:35 UTC
1 parent bd38c5c
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