Skip to content

Commit

Permalink
Unskip test_get_release_wheel_url for mac (ray-project#36430)
Browse files Browse the repository at this point in the history
Unskip test_get_release_wheel_url for mac since now we have generated wheels ends with x86_64.whl

Signed-off-by: Jiajun Yao <jeromeyjj@gmail.com>
Signed-off-by: e428265 <arvind.chandramouli@lmco.com>
  • Loading branch information
jjyao authored and arvind-chandra committed Aug 31, 2023
1 parent e89cb58 commit ed36aab
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions python/ray/tests/test_runtime_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,20 +81,14 @@ def test_get_release_wheel_url():
# This should be a commit for which wheels have already been built for
# all platforms and python versions at
# `s3://ray-wheels/releases/2.2.0/<commit>/`.
test_commits = {"2.3.0": "cf7a56b4b0b648c324722df7c99c168e92ff0b45"}
test_commits = {"2.5.0": "ddf0ccab7aa87be5cf6cf7df9d6e24a3611fb345"}
for sys_platform in ["darwin", "linux", "win32"]:
for py_version in ray_constants.RUNTIME_ENV_CONDA_PY_VERSIONS:
for version, commit in test_commits.items():
# TODO(https://github.com/ray-project/ray/issues/31362)
if py_version == (3, 11) and sys_platform != "linux":
continue

# TODO(https://github.com/ray-project/ray/issues/33396)
# We currently don't have a release with the new wheel names with the
# x86_64 suffix.
if sys_platform == "darwin":
continue

url = get_release_wheel_url(commit, sys_platform, version, py_version)
assert requests.head(url).status_code == 200, url

Expand Down

0 comments on commit ed36aab

Please sign in to comment.