swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: d5f4640d38bf4c10bf4c8ee0a67c8f2cb35cca72 authored by Antoine R. Dumont (@ardumont) on 15 December 2016, 15:07:27 UTC
Unify objstorage and storage configuration
Tip revision: d5f4640
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