Revision 80029af65e3f40c47604591500f6b02a11924604 authored by Nicolas Dandrimont on 14 September 2015, 18:47:45 UTC, committed by Nicolas Dandrimont on 14 September 2015, 18:47:45 UTC
1 parent cd46701
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