https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 76e36705321cc76ad3d99c2a268f303fc98dfe52 authored by Nicolas Dandrimont on 19 December 2017, 15:22:22 UTC
db: remove bare except:
Tip revision: 76e3670
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