Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
JackyWoo committed Sep 19, 2024
1 parent 74ada7c commit 2a3a98b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/comment_on_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ def comment_on_pr(content, title):
repo = g.get_repo(repo_name)
pull_request = repo.get_pull(int(pull_request_number))

repo.get_workflow_run(1).artifacts_url

# Get all comments on the pull request
comments = pull_request.get_issue_comments()

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def run_tests(tests_root_dir, *args):

result = subprocess.run(
["./runner", "--binary", f"{tests_root_dir}/../../build/programs/raftkeeper",
"--base-configs-dir", f"{tests_root_dir}/../../programs/server", *args],
"--base-configs-dir", f"{tests_root_dir}/../../programs/server", ' '.join(args)],
stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True
)

Expand Down

0 comments on commit 2a3a98b

Please sign in to comment.