diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2022-05-04 00:16:41 +0200 |
---|---|---|
committer | Nejc Habjan <nejc.habjan@siemens.com> | 2022-12-11 13:33:02 +0100 |
commit | 097997a6fd4a5e09474b3bffd48d879491018361 (patch) | |
tree | e6015c0323b4f597f7241d5d3c4493a934cc2537 /tests/functional/graphql/conftest.py | |
parent | c7cf0d1f172c214a11b30622fbccef57d9c86e93 (diff) | |
download | gitlab-feat/graphql.tar.gz |
feat: add basic GraphQL support (wip)feat/graphql
Diffstat (limited to 'tests/functional/graphql/conftest.py')
-rw-r--r-- | tests/functional/graphql/conftest.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/functional/graphql/conftest.py b/tests/functional/graphql/conftest.py new file mode 100644 index 0000000..7193ea4 --- /dev/null +++ b/tests/functional/graphql/conftest.py @@ -0,0 +1,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) |