https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 0965a857919e4cb0cdc1f6484dddbc593311e29a authored by Antoine R. Dumont (@ardumont) on 06 June 2017, 15:52:02 UTC
swh.storage: Clean up dead code
Tip revision: 0965a85
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