blob: 7193ea41433ed1dd1c64a50d24eb7be76a1bd1c2 (
plain)
1
2
3
4
5
6
7
8
9
|
import pytest
import gitlab
@pytest.fixture(scope="session")
def graphql_gl(gitlab_service):
url, private_token = gitlab_service
return gitlab.GraphQLGitlab(url, oauth_token=private_token)
|