Revision cd965e1927461b03aa362af6b080cabd92da0e34 authored by Nicolas Dandrimont on 14 June 2016, 15:21:11 UTC, committed by Nicolas Dandrimont on 14 June 2016, 15:22:16 UTC
1 parent d5f02d4
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