Revision 96adeaa8fc72a0c5ae30741b42aa459bfbb52256 authored by Stefano Zacchiroli on 04 October 2015, 18:39:46 UTC, committed by Stefano Zacchiroli on 04 October 2015, 18:52:00 UTC
also:

- avoid overzeaolus assertion in test, to make it more robust
- improve method doc string
1 parent f1fb64c
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