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 373c4d7 commit fdea45fCopy full SHA for fdea45f
unit/test_clean_install.sh
@@ -0,0 +1,24 @@
1
+#!/bin/bash
2
+
3
+# Tests that matplotlib can install into a completely clean virtual
4
+# environment.
5
6
+set -e
7
+cd ..
8
+rm -rf build
9
+rm -rf numpy*
10
+rm -rf python.tmp
11
+python unit/virtualenv.py python.tmp
12
+python.tmp/bin/python setup.py install
13
+python.tmp/bin/python -c "import matplotlib"
14
15
16
+# Tests that pip works
17
18
19
20
21
22
+python.tmp/bin/pip install .
23
24
0 commit comments