Revision db09b7e3aec92751fac698548bbd503517385dd7 authored by Antoine R. Dumont (@ardumont) on 13 November 2015, 13:28:14 UTC, committed by Antoine R. Dumont (@ardumont) on 13 November 2015, 13:28:14 UTC
1 parent 61ab9e2
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