https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: ff301407776526f17cd31493880bd1015d264f9b authored by Quentin Campos on 08 July 2016, 09:27:10 UTC
New upstream version 0.0.44
Tip revision: ff30140
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