Revision edd4d837969f4a86a18899ed3948f42d86e3bd56 authored by Antoine Pietri on 06 March 2017, 12:43:32 UTC, committed by Antoine Pietri on 09 March 2017, 13:01:41 UTC
1 parent 56366fa
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