Revision 6ecf3d61db1d34d1432b66ac2ec5e325e3c186c1 authored by Stefano Zacchiroli on 21 October 2017, 14:47:03 UTC, committed by Stefano Zacchiroli on 21 October 2017, 14:47:03 UTC
1 parent 8915caf
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