File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,19 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
30
30
31
31
echo " ${HOME} "
32
32
echo " ${PLOTLY_CONFIG_DIR} "
33
+ ls -l ${PLOTLY_CONFIG_DIR}
33
34
34
35
# test that it imports when you don't have write permissions
35
- sudo chmod -R 400 ${PLOTLY_CONFIG_DIR} && python -c " import plotly" ||
36
- error_exit " ${LINENO} : permissions test 400 on .plotly dir failed"
36
+ sudo chmod -R 444 ${PLOTLY_CONFIG_DIR} && python -c " import plotly" ||
37
+ error_exit " ${LINENO} : permissions test 444 on .plotly dir failed"
38
+
39
+ ls -l ${PLOTLY_CONFIG_DIR}
37
40
38
41
# test that setting write permissions will work for import (and tests)
39
- sudo chmod -R 600 ${PLOTLY_CONFIG_DIR} && python -c " import plotly" ||
40
- error_exit " ${LINENO} : permissions test 600 on .plotly dir failed"
42
+ sudo chmod -R 666 ${PLOTLY_CONFIG_DIR} && python -c " import plotly" ||
43
+ error_exit " ${LINENO} : permissions test 666 on .plotly dir failed"
44
+
45
+ ls -l ${PLOTLY_CONFIG_DIR}
41
46
42
47
echo " running tests for Python ${version} as user '$( whoami) '"
43
48
if [ ${version: 0: 3} == ' 2.7' ]
You can’t perform that action at this time.
0 commit comments