https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 9f84cecf1ee9715024948ad1817913387b99d063 authored by Nicolas Dandrimont on 31 January 2018, 14:19:47 UTC
Add function to retrieve latest snapshot based on origin filtering
Tip revision: 9f84cec
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