https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: d88a775f33655fb57ed5b6061b8897209cbfcab1 authored by Nicolas Dandrimont on 23 September 2015, 12:55:18 UTC
swh.storage.api: Add logging to the wsgi app
Tip revision: d88a775
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