summaryrefslogtreecommitdiff
path: root/gitlab/tests/conftest.py
diff options
context:
space:
mode:
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,
+ )