Skip to content
Snippets Groups Projects
Commit 2b90ef49 authored by Tim Jaacks's avatar Tim Jaacks
Browse files

Remove test.py

parent b40e6093
No related branches found
No related tags found
1 merge request!1Remove test.py
Pipeline #8036 passed with stage
in 30 seconds
#!/usr/bin/env python3
import common
from gitlab import Gitlab
def main():
gitlab = Gitlab("https://gitlab.com", private_token="9q7XsWMpiv_MM5z6HiHw")
project = common.get_project(gitlab, "minimal-foo")
with gitlab:
merge_request = common.get_merge_request(
gitlab,
project,
state="merged",
source_branch="remove-file-3",
target_branch="master",
commit="1d5c8da0a4826cceef1abf99c23d7c3585754f19",
)
print(merge_request)
if __name__ == "__main__":
main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment