swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: f88331c5ed35fba2bcd6b14c959825af35ad0774 authored by Nicolas Dandrimont on 29 September 2015, 14:51:45 UTC
Bump dependencies on swh.core to >= 0.0.6
Tip revision: f88331c
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