Revision c94ba898a28834e0ab2b6ad42052060d898438a6 authored by Antoine R. Dumont (@ardumont) on 24 March 2017, 11:57:18 UTC, committed by Antoine R. Dumont (@ardumont) on 24 March 2017, 11:57:18 UTC
1 parent 3fe8924
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