Skip to content

Commit

Permalink
Small release test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dongreenberg committed Jul 9, 2024
1 parent fc72410 commit f53d4b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_resources/test_clusters/test_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ def test_cluster_run_within_cluster(self, cluster):
remote_run = rh.function(run_in_no_env).to(cluster)
res = remote_run("echo hello")
assert res[0][0] == 0
assert res[0][1] == "hello\n"
assert res[0][1].strip() == "hello"

@pytest.mark.level("local")
@pytest.mark.clustertest
Expand Down
2 changes: 1 addition & 1 deletion tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def friend_account_in_org():

def test_env(logged_in=False):
return rh.env(
reqs=["pytest", "httpx", "pytest_asyncio", "pandas"],
reqs=["pytest", "httpx", "pytest_asyncio", "pandas", "'numpy<=1.26.4'"],
working_dir=None,
setup_cmds=[
f"mkdir -p ~/.rh; touch ~/.rh/config.yaml; "
Expand Down

0 comments on commit f53d4b6

Please sign in to comment.