Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yucohen committed Jun 10, 2024
1 parent 3ecdf20 commit 1a8e3aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demisto_sdk/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3007,7 +3007,7 @@ def openapi_codegen(ctx, **kwargs):
"-ab",
"--artifacts_bucket",
help="The artifacts bucket name to upload the results to",
required=True,
required=False,
)
@click.option("-s", "--server", help="The server URL to connect to")
@click.option("-c", "--conf", help="Path to content conf.json file", required=True)
Expand Down
4 changes: 2 additions & 2 deletions demisto_sdk/commands/test_content/TestContentClasses.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,8 +859,8 @@ def __init__(self, kwargs: dict, logging_module: ParallelLoggingManager):
self.tests_data_keeper = TestResults(
self.conf.unmockable_integrations,
kwargs["artifacts_path"],
kwargs["service_account"],
kwargs["artifacts_bucket"],
kwargs.get("service_account"),
kwargs.get("artifacts_bucket"),
)
self.conf_unmockable_tests = self._get_unmockable_tests_from_conf()
self.unmockable_test_ids: Set[str] = set()
Expand Down

0 comments on commit 1a8e3aa

Please sign in to comment.