Revision 5f511b86aebcfa1a1b515877317a781cd60c4f03 authored by Stefano Zacchiroli on 14 October 2015, 08:56:24 UTC, committed by Stefano Zacchiroli on 14 October 2015, 08:56:24 UTC
1 parent 166ace6
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