Revision 252e49b158145f0064dbea03d3fab053bb594387 authored by Quentin Campos on 16 June 2016, 09:35:19 UTC, committed by Quentin Campos on 16 June 2016, 10:51:47 UTC
1 parent 8c6e8d7
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