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 3b827f4 commit fd723d2Copy full SHA for fd723d2
circle.yml
@@ -58,3 +58,13 @@ test:
58
# since optional requirements is part of the test suite, we don't need to
59
# worry about testing that it *can* be imported in this case.
60
- $(! python -c "import plotly.figure_factory")
61
+
62
+ # test the distribution and a basic import
63
+ - rm -rf dist/ &&
64
+ python setup.py sdist &&
65
+ mkdir test_install &&
66
+ cd test_install &&
67
+ virtualenv venv &&
68
+ source venv/bin/activate &&
69
+ pip install ../dist/* &&
70
+ python -c "import plotly"
0 commit comments