Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"pytest-asyncio==0.21.1",
"pytest-console-scripts==1.3.1",
"pytest-cov==5.0.0",
"mock==4.0.2",
"vcrpy==4.4.0",
"aiofiles",
]
Expand Down
1 change: 1 addition & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@ def test_cli_get_transport_no_protocol(parser):
get_transport(args)


@pytest.mark.script_launch_mode("subprocess")
def test_cli_ep_version(script_runner):
ret = script_runner.run("gql-cli", "--version")

Expand Down
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from contextlib import suppress
from unittest import mock

import mock
import pytest
from graphql import build_ast_schema, parse

Expand Down
Loading