Revision 28c3eec115072f479e533605c1c03512e5450007 authored by Nicolas Dandrimont on 16 February 2017, 12:21:14 UTC, committed by Nicolas Dandrimont on 16 February 2017, 12:23:23 UTC
1 parent 7e4f780
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