diff options
author | Roger Meier <r.meier@siemens.com> | 2020-05-20 15:42:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-20 15:42:39 +0200 |
commit | 38e9fde46a2e9e630154feb1cc533a75a55e4a2a (patch) | |
tree | 1b2a86206af2a2d05e7a121eb4df5023d06a028d /gitlab/tests/conftest.py | |
parent | 89007c9d1a642bda87ca086f00acf0f47d663611 (diff) | |
parent | 127fa5a2134aee82958ce05357d60513569c3659 (diff) | |
download | gitlab-38e9fde46a2e9e630154feb1cc533a75a55e4a2a.tar.gz |
Merge pull request #1089 from python-gitlab/feat/group-runners
feat: add group runners api
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, + ) |