8000 specify the numpy dependency explicitly to prevent regression in test suite by xginn8 · Pull Request #563 · influxdata/influxdb-python · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

specify the numpy dependency explicitly to prevent regression in test suite #563

Merged
merged 1 commit into from
Feb 10, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ setenv = INFLUXDB_PYTHON_SKIP_SERVER_TESTS=False
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
py27,py34,py35,py36: pandas==0.20.1
py27,py34,py35,py36: numpy==1.13.3
# Only install pandas with non-pypy interpreters
commands = nosetests -v --with-doctest {posargs}

Expand All @@ -25,11 +26,13 @@ deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
pandas
coverage
numpy==1.13.3
commands = nosetests -v --with-coverage --cover-html --cover-package=influxdb

[testenv:docs]
deps = -r{toxinidir}/requirements.txt
pandas==0.20.1
numpy==1.13.3
Sphinx==1.5.5
sphinx_rtd_theme
commands = sphinx-build -b html docs/source docs/build
Expand Down
0