https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: e522d1e68bcbe10505c880cafd19e559ac218156 authored by Quentin Campos on 20 May 2016, 10:00:49 UTC
Command line launch improvements
Tip revision: e522d1e
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