https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 1579956b7087fbb0329dadff2d918e4cd375905b authored by Nicolas Dandrimont on 14 June 2016, 15:25:42 UTC
New upstream version 0.0.40
Tip revision: 1579956
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