Skip to content

Commit

Permalink
Skip client mode ut if ray > 2.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouaihui committed Jan 17, 2024
1 parent cea87df commit c706378
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions fed/tests/client_mode_tests/test_basic_client_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,14 @@

import fed
import fed._private.compatible_utils as compatible_utils
from fed._private.compatible_utils import _compare_version_strings
from fed.tests.test_utils import ray_client_mode_setup # noqa

pytest.mark.skipif(
_compare_version_strings(ray.__version__, '2.4.0', ),
reason='Skip client mode when ray > 2.4.0',
)


@fed.remote
class MyModel:
Expand Down

0 comments on commit c706378

Please sign in to comment.