https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: dcb4c611fb43de9866f1f46fd44ec34db2dbeb70 authored by Nicolas Dandrimont on 25 January 2016, 09:02:46 UTC
sql/upgrades/046: add 045→046 migration
Tip revision: dcb4c61
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