swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: c779ebdff8d2df60d1cf94ea9f4aa4bf009f45b4 authored by Nicolas Dandrimont on 03 November 2015, 15:11:53 UTC
sql/upgrades/030: add 029 → 030 upgrade script
Tip revision: c779ebd
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