Revision 1439e0313f35061ac0787deb216f53c10ca445a9 authored by Stefano Zacchiroli on 12 September 2015, 11:30:26 UTC, committed by Stefano Zacchiroli on 12 September 2015, 11:30:26 UTC
1 parent 48fe79a
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