Revision f7665b3923a7cec87cd78f2e723fafe9032081ff authored by Nicolas Dandrimont on 19 September 2016, 12:21:38 UTC, committed by Nicolas Dandrimont on 19 September 2016, 12:31:03 UTC
1 parent 941c52c
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