Revision 26ce6d8c97441ea348f582e061d4aa5e9c9ac295 authored by Nicolas Dandrimont on 08 February 2016, 14:31:10 UTC, committed by Nicolas Dandrimont on 08 February 2016, 14:37:56 UTC
1 parent 2e29497
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