Revision dad8f6794e5f0b8db072b214eaee82d74cf51704 authored by Antoine R. Dumont (@ardumont) on 15 October 2015, 14:50:34 UTC, committed by Antoine R. Dumont (@ardumont) on 15 October 2015, 14:50:34 UTC
1 parent 7cbea2a
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