summaryrefslogtreecommitdiff
path: root/gitlab/tests/conftest.py
blob: 91752c671564c787717fae7faa9c7f1e21ec87c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import pytest
import gitlab


@pytest.fixture
def gl():
    return gitlab.Gitlab(
        "http://localhost",
        private_token="private_token",
        ssl_verify=True,
        api_version=4,
    )