diff --git a/.ci/run-repository.sh b/.ci/run-repository.sh index 29547a0..d068992 100755 --- a/.ci/run-repository.sh +++ b/.ci/run-repository.sh @@ -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}')" diff --git a/.ci/test-matrix.yml b/.ci/test-matrix.yml index aaf0402..e4faa47 100755 --- a/.ci/test-matrix.yml +++ b/.ci/test-matrix.yml @@ -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 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 89a2af5..5d658bb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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/ ``` diff --git a/docs/sphinx/development/contributing.rst b/docs/sphinx/development/contributing.rst index efd7f02..997aa54 100644 --- a/docs/sphinx/development/contributing.rst +++ b/docs/sphinx/development/contributing.rst @@ -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 diff --git a/noxfile.py b/noxfile.py index 5432e91..f058c71 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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(".")