We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 013eebd commit 57ef910Copy full SHA for 57ef910
setup.py
@@ -19,7 +19,6 @@
19
"pytest-asyncio==0.21.1",
20
"pytest-console-scripts==1.3.1",
21
"pytest-cov==5.0.0",
22
- "mock==4.0.2",
23
"vcrpy==4.4.0",
24
"aiofiles",
25
]
tests/test_cli.py
@@ -370,6 +370,7 @@ def test_cli_get_transport_no_protocol(parser):
370
get_transport(args)
371
372
373
+@pytest.mark.script_launch_mode("subprocess")
374
def test_cli_ep_version(script_runner):
375
ret = script_runner.run("gql-cli", "--version")
376
tests/test_client.py
@@ -1,7 +1,7 @@
1
import os
2
from contextlib import suppress
3
+from unittest import mock
4
-import mock
5
import pytest
6
from graphql import build_ast_schema, parse
7
0 commit comments