Revision c7a3266afaa34aade695e11876ae7906a568b11f authored by Antoine R. Dumont (@ardumont) on 14 November 2018, 13:58:17 UTC, committed by Antoine R. Dumont (@ardumont) on 14 November 2018, 15:07:33 UTC
1 parent f87808c
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