https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: d826f7542bed5a0de553f7d85e76c16989cbeb84 authored by Antoine R. Dumont (@ardumont) on 24 May 2018, 10:02:11 UTC
swh.storage.api.client: Permit to specify the query timeout option
Tip revision: d826f75
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