https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 4c3623c1e4ec7332168c91300e15f4416ac9dc0f authored by Antoine R. Dumont (@ardumont) on 22 September 2016, 11:42:19 UTC
Archiver: Fix to copy only to targeted destination
Tip revision: 4c3623c
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