Revision 0c51e4d8100118c63b51b8d66c47b1ef6d25a7a3 authored by Antoine R. Dumont (@ardumont) on 09 November 2018, 13:53:11 UTC, committed by Antoine R. Dumont (@ardumont) on 14 November 2018, 15:07:32 UTC
Test back `content_get` and `content_get_metadata` as a first step.
Plan to use those for the new and upcoming `content_get_range`
function.
1 parent 823465f
Raw File
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