diff options
author | Max Wittig <max.wittig@siemens.com> | 2020-05-16 14:41:56 +0200 |
---|---|---|
committer | Max Wittig <max.wittig@siemens.com> | 2020-05-16 15:12:23 +0200 |
commit | 127fa5a2134aee82958ce05357d60513569c3659 (patch) | |
tree | 82a16ef5e216a0c0ecf47e5e4f4cdcd7c9c1f8db /gitlab/tests/conftest.py | |
parent | 49439916ab58b3481308df5800f9ffba8f5a8ffd (diff) | |
download | gitlab-feat/group-runners.tar.gz |
test(runners): add all runners unit testsfeat/group-runners
Diffstat (limited to 'gitlab/tests/conftest.py')
-rw-r--r-- | gitlab/tests/conftest.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gitlab/tests/conftest.py b/gitlab/tests/conftest.py new file mode 100644 index 0000000..91752c6 --- /dev/null +++ b/gitlab/tests/conftest.py @@ -0,0 +1,12 @@ +import pytest +import gitlab + + +@pytest.fixture +def gl(): + return gitlab.Gitlab( + "http://localhost", + private_token="private_token", + ssl_verify=True, + api_version=4, + ) |