Revision c9e2b156d140cf9801710317d054b009be62b90b authored by Antoine R. Dumont (@ardumont) on 02 December 2016, 16:52:53 UTC, committed by Antoine R. Dumont (@ardumont) on 02 December 2016, 16:52:53 UTC
1 parent 648d071
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