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 e1af130 commit 256311aCopy full SHA for 256311a
circle.yml
@@ -28,10 +28,11 @@ test:
28
- bash circle/test.sh
29
30
# test that it imports when you don't have write permissions
31
- - sudo chmod 444 ${PLOTLY_CONFIG_DIR} && python -c "import plotly"
+ - sudo chmod -R 444 ${PLOTLY_CONFIG_DIR} && python -c "import plotly"
32
33
# test that giving back write permissions works again
34
- - sudo chmod 666 ${PLOTLY_CONFIG_DIR} && python -c "import plotly"
+ # this also has to pass the test suite that follows
35
+ - sudo chmod -R 666 ${PLOTLY_CONFIG_DIR} && python -c "import plotly"
36
37
# test core things in the general 2.7 version that circle has
38
- nosetests -xv plotly/tests/test_core --with-coverage --cover-package=plotly
0 commit comments