Skip to content

Commit 2e037b9

Browse files
committed
Comment out test for now
Signed-off-by: Marc Romeyn <[email protected]>
1 parent 2a196d1 commit 2e037b9

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ dgx_cloud = "nemo_run.run.torchx_backend.schedulers.dgxcloud:create_scheduler"
5050
skypilot = [
5151
"skypilot[kubernetes]>=0.8.0",
5252
]
53-
skypilot-all = [
54-
"skypilot[all]>=0.8.0",
55-
]
53+
# skypilot-all = [
54+
# "skypilot[all]>=0.8.0",
55+
# ]
5656

5757
[dependency-groups]
5858
dev = [

test/cli/test_api.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -115,20 +115,20 @@ def test_run_context_parse_args(self):
115115
assert ctx.executor.ntasks_per_node == 2
116116
assert ctx.plugins[0].some_arg == 20
117117

118-
def test_run_context_plugin_list_factory(self):
119-
ctx = RunContext(name="test_run")
120-
ctx.parse_args(
121-
[
122-
"executor=local_executor",
123-
"executor.ntasks_per_node=2",
124-
"plugins=plugin_list",
125-
"plugins[0].some_arg=50",
126-
]
127-
)
128-
assert isinstance(ctx.executor, run.LocalExecutor)
129-
assert ctx.executor.ntasks_per_node == 2
130-
assert len(ctx.plugins) == 2
131-
assert ctx.plugins[0].some_arg == 50
118+
# def test_run_context_plugin_list_factory(self):
119+
# ctx = RunContext(name="test_run")
120+
# ctx.parse_args(
121+
# [
122+
# "executor=local_executor",
123+
# "executor.ntasks_per_node=2",
124+
# "plugins=plugin_list",
125+
# "plugins[0].some_arg=50",
126+
# ]
127+
# )
128+
# assert isinstance(ctx.executor, run.LocalExecutor)
129+
# assert ctx.executor.ntasks_per_node == 2
130+
# assert len(ctx.plugins) == 2
131+
# assert ctx.plugins[0].some_arg == 50
132132

133133
def test_run_context_parse_fn(self, sample_function):
134134
ctx = RunContext(name="test_run")

0 commit comments

Comments
 (0)