Skip to content

Commit

Permalink
[test] disable test_runtime_env_cache_with_pip_check on python 3.12 (r…
Browse files Browse the repository at this point in the history
…ay-project#46581)

Signed-off-by: hongchaodeng <hongchaodeng1@gmail.com>
  • Loading branch information
hongchaodeng authored Jul 12, 2024
1 parent 92321a9 commit a97814c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/ray/tests/test_runtime_env_conda_and_pip_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ def f():
assert f"No matching distribution found for pip{pip_version}" in str(error.value)


@pytest.mark.skipif(
sys.version_info.major == 3 and sys.version_info.minor >= 12,
reason="Only pip 23+ support python 3.12 and conflict check always exists",
)
def test_runtime_env_cache_with_pip_check(start_cluster):

# moto require requests>=2.5
Expand Down

0 comments on commit a97814c

Please sign in to comment.