Skip to content

Commit

Permalink
ci: fix failing nightlies after auth PR (#8904)
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasBlaskey authored Feb 28, 2024
1 parent ad7d260 commit 392f054
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .circleci/real_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3524,6 +3524,7 @@ workflows:
context:
- aws
- hugging-face
- aws-ci-cluster-default-user-credentials
matrix:
parameters:
cluster-id-prefix: ["distributed"]
Expand Down
6 changes: 4 additions & 2 deletions e2e_tests/tests/experiment/test_custom_searcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,9 @@ def test_resume_random_searcher_exp(exceptions: List[str]) -> None:


@pytest.mark.nightly
def test_run_asha_batches_exp(tmp_path: pathlib.Path, client_login: None) -> None:
def test_run_asha_batches_exp(tmp_path: pathlib.Path) -> None:
sess = api_utils.user_session()
client._determined = client.Determined._from_session(sess)
config = conf.load_config(conf.fixtures_path("no_op/adaptive.yaml"))
config["searcher"] = {
"name": "custom",
Expand Down Expand Up @@ -382,8 +383,9 @@ def test_run_asha_batches_exp(tmp_path: pathlib.Path, client_login: None) -> Non
],
],
)
def test_resume_asha_batches_exp(exceptions: List[str], client_login: None) -> None:
def test_resume_asha_batches_exp(exceptions: List[str]) -> None:
sess = api_utils.user_session()
client._determined = client.Determined._from_session(sess)
config = conf.load_config(conf.fixtures_path("no_op/adaptive.yaml"))
config["searcher"] = {
"name": "custom",
Expand Down

0 comments on commit 392f054

Please sign in to comment.