Unverified Commit 4176b632 authored by Andrey Talman's avatar Andrey Talman Committed by GitHub
Browse files

Disabling smoke test for nightly builds (#5544)



* Dsiabling smoke test for nightly builds

* fix lint
Co-authored-by: default avatarVasilis Vryniotis <datumbox@users.noreply.github.com>
parent a784db48
This diff is collapsed.
...@@ -84,9 +84,10 @@ def workflow_pair(btype, os_type, python_version, cu_version, unicode, prefix="" ...@@ -84,9 +84,10 @@ def workflow_pair(btype, os_type, python_version, cu_version, unicode, prefix=""
if upload: if upload:
w.append(generate_upload_workflow(base_workflow_name, os_type, btype, cu_version, filter_branch=filter_branch)) w.append(generate_upload_workflow(base_workflow_name, os_type, btype, cu_version, filter_branch=filter_branch))
if filter_branch == "nightly" and os_type in ["linux", "win"]: # disable smoke tests, they are broken and needs to be fixed
pydistro = "pip" if btype == "wheel" else "conda" # if filter_branch == "nightly" and os_type in ["linux", "win"]:
w.append(generate_smoketest_workflow(pydistro, base_workflow_name, filter_branch, python_version, os_type)) # pydistro = "pip" if btype == "wheel" else "conda"
# w.append(generate_smoketest_workflow(pydistro, base_workflow_name, filter_branch, python_version, os_type))
return w return w
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment