Revision f681f83cdd8474e598a6c3a0fe8da28c5373b48e authored by Antoine R. Dumont (@ardumont) on 01 June 2017, 08:50:13 UTC, committed by Antoine R. Dumont (@ardumont) on 02 June 2017, 14:20:45 UTC
1 parent 08827dc
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