diff --git a/test.py b/test.py deleted file mode 100755 index e33c1951f2c0b2855d92ffabed4cdac86cce4143..0000000000000000000000000000000000000000 --- a/test.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/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()