File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencies:
16
16
- bash circle/setup.sh
17
17
18
18
# install testing tools for circle's version of things
19
- - pip install nose coverage
19
+ - pip install -r ${PLOTLY_OPTIONAL_REQUIREMENTS_FILE}
20
20
- pip install -I .
21
21
22
22
# we need to cd out of the project root to ensure the install worked
Original file line number Diff line number Diff line change @@ -35,10 +35,8 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
35
35
pip install -r ${PLOTLY_CORE_REQUIREMENTS_FILE} ||
36
36
error_exit " ${SIG} ${LINENO} : can't install core reqs for Python ${version} ."
37
37
38
+ # install optional (including test) requirements
38
39
pip install -r ${PLOTLY_OPTIONAL_REQUIREMENTS_FILE} ||
39
40
error_exit " ${SIG} ${LINENO} : can't install optional for Python ${version} ."
40
41
41
- # install some test tools
42
- pip install nose coverage ||
43
- error_exit " ${SIG} ${LINENO} : can't install test tools for Python ${version} ."
44
42
done
Original file line number Diff line number Diff line change 13
13
14
14
## testing dependencies ##
15
15
nose==1.3.3
16
+ coverage
16
17
17
18
## ipython dependencies ##
18
19
ipython[all]==3.0.0
You can’t perform that action at this time.
0 commit comments