Fix installed pandas version on Jenkins

This commit is contained in:
P. Sai Vinay 2021-07-31 23:21:11 +05:30 committed by GitHub
parent 4c1af42c14
commit c0e861dc77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

View File

@ -36,4 +36,4 @@ docker run \
--name eland-test-runner \
--rm \
elastic/eland \
nox -s lint "test-${PYTHON_VERSION}(pandas_version='${PANDAS_VERSION}')"
nox -s "test-${PYTHON_VERSION}(pandas_version='${PANDAS_VERSION}')"

View File

@ -5,8 +5,8 @@ ELASTICSEARCH_VERSION:
- 7.x-SNAPSHOT
PANDAS_VERSION:
- 1.2
- 1.3
- 1.2.0
- 1.3.0
PYTHON_VERSION:
- 3.9

View File

@ -79,7 +79,7 @@ Once your changes and tests are ready to submit for review:
$ nox -s format
# Run the test suite
$ pytest --doctest-modules tests/
$ pytest --doctest-modules eland/ tests/
$ pytest --nbval tests/notebook/
```

View File

@ -86,8 +86,8 @@ Once your changes and tests are ready to submit for review:
$ nox -s format
# Run the test suite
$ pytest --doctest-modules eland/tests/
$ pytest --nbval eland/tests/notebook/
$ pytest --doctest-modules eland/ tests/
$ pytest --nbval tests/notebook/
2. Sign the Contributor License Agreement

View File

@ -91,7 +91,7 @@ def lint(session):
@nox.session(python=["3.7", "3.8", "3.9"])
@nox.parametrize("pandas_version", ["1.2", "1.3"])
@nox.parametrize("pandas_version", ["1.2.0", "1.3.0"])
def test(session, pandas_version: str):
session.install("-r", "requirements-dev.txt")
session.install(".")