Add pytest option to specify a URL for shark tank artifacts. (#363)

* Xfail updates.

* Generalize tank SHA option to bucket address and add pytest option.
This commit is contained in:
Ean Garvey
2022-09-27 02:40:40 -05:00
committed by GitHub
parent ef4b306c7b
commit cbf3f784aa
3 changed files with 30 additions and 20 deletions

View File

@@ -42,3 +42,9 @@ def pytest_addoption(parser):
default="None",
help="Passes the github SHA of the CI workflow to include in google storage directory for reproduction artifacts.",
)
parser.addoption(
"--tank_url",
type=str,
default="gs://shark_tank/latest",
help="URL to bucket from which to download SHARK tank artifacts. Default is gs://shark_tank/latest",
)