Revision fc4791a18bbf001014b98eb3b68b1a3c55d143aa authored by Quentin Campos on 15 June 2016, 16:00:17 UTC, committed by Quentin Campos on 21 June 2016, 12:11:42 UTC
1 parent 17bd1a3
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