swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 27c942c727f6544c6eb352dea99d89db715e6953 authored by Antoine R. Dumont (@ardumont) on 24 May 2018, 10:13:51 UTC
New upstream version 0.0.101
Tip revision: 27c942c
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