https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 4d6d3bd04c3be82a676bd910d154a014d6aed51d authored by Antoine R. Dumont (@ardumont) on 23 September 2016, 10:16:25 UTC
archiver: Pass the destination as parameter of the worker to backend
Tip revision: 4d6d3bd
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