Skip to content

Commit

Permalink
tests: Update remaining systems to use a random Python version for te…
Browse files Browse the repository at this point in the history
…sts (#1065)
  • Loading branch information
helensilva14 committed Dec 1, 2023
1 parent 722dff9 commit 4d21d65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def integration_spanner(session):
session.run("pytest", "tests/system/data_sources/test_spanner.py", *session.posargs)


@nox.session(python=PYTHON_VERSIONS, venv_backend="venv")
@nox.session(python=random.choice(PYTHON_VERSIONS), venv_backend="venv")
def integration_teradata(session):
"""Run Teradata integration tests.
Ensure Teradata validation is running as expected.
Expand Down Expand Up @@ -235,7 +235,7 @@ def integration_state(session):
session.run("pytest", test_path, *session.posargs)


@nox.session(python=PYTHON_VERSIONS, venv_backend="venv")
@nox.session(python=random.choice(PYTHON_VERSIONS), venv_backend="venv")
def integration_oracle(session):
"""Run Oracle integration tests.
Ensure Oracle validation is running as expected.
Expand Down Expand Up @@ -271,7 +271,7 @@ def integration_hive(session):
session.run("pytest", "tests/system/data_sources/test_hive.py", *session.posargs)


@nox.session(python=PYTHON_VERSIONS, venv_backend="venv")
@nox.session(python=random.choice(PYTHON_VERSIONS), venv_backend="venv")
def integration_snowflake(session):
"""Run Snowflake integration tests.
Ensure Snowflake validation is running as expected.
Expand Down

0 comments on commit 4d21d65

Please sign in to comment.