https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 0c604ad881b2bf9167bd3e1f5bcd4e8504ddd44f authored by Nicolas Dandrimont on 28 October 2015, 11:38:32 UTC
swh.storage.api.client: cache http connections with a requests Session
Tip revision: 0c604ad
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