Skip to content

Commit 5a5f2ea

Browse files
committed
Use skips instead of custom mark
1 parent 487369b commit 5a5f2ea

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

pyproject.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,10 @@ ignore_missing_imports = true
4747
module = ["google.rpc.*", "grpcutil"]
4848

4949
[tool.pytest.ini_options]
50-
addopts = "-x -m \"not remote_calls\""
50+
addopts = "-x"
5151
log_level = "debug"
5252
minversion = "6.0"
5353
asyncio_mode = "auto"
54-
markers = [
55-
"remote_calls: marks tests that make remote calls, not normally run"
56-
]
5754

5855
[tool.isort]
5956
ensure_newline_before_comments = true

tests/insecure_client_test.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@
2020
remote_host = "192.168.something.something"
2121

2222

23-
@pytest.mark.remote_calls
23+
@pytest.mark.skip(reason="Makes a remote call that we haven't yet supported in CI")
2424
async def test_normal_async_client_raises_error_on_insecure_remote_call(token):
2525
with pytest.raises(grpc.RpcError):
2626
client = AsyncClient(f"{remote_host}:50051", insecure_bearer_token_credentials(token))
2727
await write_test_schema(client)
2828

2929

30-
@pytest.mark.remote_calls
30+
@pytest.mark.skip(reason="Makes a remote call that we haven't yet supported in CI")
3131
async def test_normal_sync_client_raises_error_on_insecure_remote_call(token):
3232
with pytest.raises(grpc.RpcError):
3333
client = SyncClient(f"{remote_host}:50051", insecure_bearer_token_credentials(token))
3434
await write_test_schema(client)
3535

3636

37-
@pytest.mark.remote_calls
37+
@pytest.mark.skip(reason="Makes a remote call that we haven't yet supported in CI")
3838
async def test_insecure_client_makes_insecure_remote_call(token):
3939
insecure_client = InsecureClient(f"{remote_host}:50051", token)
4040
await write_test_schema(insecure_client)

0 commit comments

Comments
 (0)