https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 1031dc52c837db494392525a82114e7560ec4b19 authored by Antoine Lambert on 12 November 2018, 12:56:28 UTC
debian: Remove nose and migrate to pytest
Tip revision: 1031dc5
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