Revision 16ffb6eb9264a367a595c83c19babcfe7fb8e432 authored by Stefano Zacchiroli on 03 October 2018, 09:11:19 UTC, committed by Stefano Zacchiroli on 03 October 2018, 09:11:19 UTC
1 parent 7fa1a34
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