Revision 287da80f7c9d8d127f858cab487fe24d8e845304 authored by Quentin Campos on 02 August 2016, 10:59:18 UTC, committed by Quentin Campos on 03 August 2016, 09:00:59 UTC
Additional configuration was passed from director to the worker at
initialization. We remove it so the queued messages in celery are only
lists of sha1 with no dict to pack/unpack.
1 parent 801ff72
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