Remove `pytest_options={"rA": None}` in CI (#25263)

fix

Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
This commit is contained in:
Yih-Dar 2023-08-02 14:53:05 +02:00 committed by GitHub
parent 1baeed5bdf
commit 8edd0da960
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -299,7 +299,6 @@ tf_job = CircleCIJob(
],
parallelism=1,
pytest_num_workers=6,
pytest_options={"rA": None},
)
@ -311,7 +310,6 @@ flax_job = CircleCIJob(
"pip install -U --upgrade-strategy eager .[flax,testing,sentencepiece,flax-speech,vision]",
],
parallelism=1,
pytest_options={"rA": None},
)
@ -323,7 +321,6 @@ pipelines_torch_job = CircleCIJob(
"pip install --upgrade --upgrade-strategy eager pip",
"pip install -U --upgrade-strategy eager .[sklearn,torch,testing,sentencepiece,torch-speech,vision,timm,video]",
],
pytest_options={"rA": None},
marker="is_pipeline_test",
)
@ -337,7 +334,6 @@ pipelines_tf_job = CircleCIJob(
"pip install -U --upgrade-strategy eager .[sklearn,tf-cpu,testing,sentencepiece,vision]",
"pip install -U --upgrade-strategy eager tensorflow_probability",
],
pytest_options={"rA": None},
marker="is_pipeline_test",
)