https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: a184e943e979bfbbafae6d07f0a76c9f6561425b authored by Antoine R. Dumont (@ardumont) on 23 August 2016, 13:32:24 UTC
d/control: Update dependency version on swh.core
Tip revision: a184e94
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