Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39561bb commit dc38f16Copy full SHA for dc38f16
circle/test.sh
@@ -32,11 +32,11 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
32
echo "${PLOTLY_CONFIG_DIR}"
33
34
# test that it imports when you don't have write permissions
35
- chmod -R 400 ${PLOTLY_CONFIG_DIR} && python -c "import plotly" ||
+ sudo chmod -R 400 ${PLOTLY_CONFIG_DIR} && python -c "import plotly" ||
36
error_exit "${LINENO}: permissions test 400 on .plotly dir failed"
37
38
# test that setting write permissions will work for import (and tests)
39
- chmod -R 600 ${PLOTLY_CONFIG_DIR} && python -c "import plotly" ||
+ sudo chmod -R 600 ${PLOTLY_CONFIG_DIR} && python -c "import plotly" ||
40
error_exit "${LINENO}: permissions test 600 on .plotly dir failed"
41
42
echo "running tests for Python ${version} as user '$(whoami)'"
0 commit comments