Skip to content

Commit e17e802

Browse files
committed
Tests: fix storages definition in GitHub workflow
I forgot the nested dictionary and the BACKEND field in the last commit.
1 parent 141dab4 commit e17e802

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/travis/configure_catmaid.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ echo "SERVE_STATIC = True" >> projects/mysite/settings.py
1919
# TODO: Enable pipeline. Right now it doesn't seem to play well with Sauce Labs.
2020
echo "PIPELINE['PIPELINE_ENABLED'] = False" >> projects/mysite/settings.py
2121
# Disable cache-busting for front-end tests
22-
echo "STORAGES = { 'default': 'pipeline.storage.PipelineStorage' }" >> projects/mysite/settings.py
22+
echo "STORAGES = { 'default': { 'BACKEND': 'pipeline.storage.PipelineStorage' } }" >> projects/mysite/settings.py
2323
# Enable front-end tess
2424
echo "FRONT_END_TESTS_ENABLED = True" >> projects/mysite/settings.py
2525
# Enable Selenium GUI tests, this currently works only with non-hash file names.

0 commit comments

Comments
 (0)