https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 90e41961b79802879b1f6e080476001b25f375c3 authored by Nicolas Dandrimont on 22 July 2016, 14:59:18 UTC
New upstream version 0.0.47
Tip revision: 90e4196
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