https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 2fd7f72f6fe5c0419bad86c718ed0705c18effd9 authored by Antoine R. Dumont (@ardumont) on 11 October 2016, 23:33:57 UTC
provenance: Rework configuration setup
Tip revision: 2fd7f72
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