This commit is contained in:
alesapin 2022-03-29 19:15:25 +02:00
parent bf591b971a
commit d59941e4f6
2 changed files with 2 additions and 1 deletions

View File

@ -60,6 +60,7 @@ def post_commit_status_to_file(file_path, description, state, report_url):
out = csv.writer(f, delimiter="\t")
out.writerow([state, report_url, description])
def post_label(gh, pr_info, label_name):
repo = gh.get_repo(GITHUB_REPOSITORY)
pull_request = repo.get_pull(pr_info.number)

View File

@ -280,4 +280,4 @@ def test_HDFS(start_cluster):
def test_schema_inference(start_cluster):
error = node7.query_and_get_error("desc url('http://test.com`, 'TSVRaw'')")
assert(error.find('ReadWriteBufferFromHTTPBase') == -1)
assert error.find("ReadWriteBufferFromHTTPBase") == -1