summaryrefslogtreecommitdiff
path: root/gitlab/tests/conftest.py
diff options
context:
space:
mode:
authorRoger Meier <r.meier@siemens.com>2020-05-20 15:42:39 +0200
committerGitHub <noreply@github.com>2020-05-20 15:42:39 +0200
commit38e9fde46a2e9e630154feb1cc533a75a55e4a2a (patch)
tree1b2a86206af2a2d05e7a121eb4df5023d06a028d /gitlab/tests/conftest.py
parent89007c9d1a642bda87ca086f00acf0f47d663611 (diff)
parent127fa5a2134aee82958ce05357d60513569c3659 (diff)
downloadgitlab-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.py12
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,
+ )