File tree 2 files changed +4
-7
lines changed
2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -47,13 +47,10 @@ ignore_missing_imports = true
47
47
module = [" google.rpc.*" , " grpcutil" ]
48
48
49
49
[tool .pytest .ini_options ]
50
- addopts = " -x -m \" not remote_calls \" "
50
+ addopts = " -x"
51
51
log_level = " debug"
52
52
minversion = " 6.0"
53
53
asyncio_mode = " auto"
54
- markers = [
55
- " remote_calls: marks tests that make remote calls, not normally run"
56
- ]
57
54
58
55
[tool .isort ]
59
56
ensure_newline_before_comments = true
Original file line number Diff line number Diff line change 20
20
remote_host = "192.168.something.something"
21
21
22
22
23
- @pytest .mark .remote_calls
23
+ @pytest .mark .skip ( reason = "Makes a remote call that we haven't yet supported in CI" )
24
24
async def test_normal_async_client_raises_error_on_insecure_remote_call (token ):
25
25
with pytest .raises (grpc .RpcError ):
26
26
client = AsyncClient (f"{ remote_host } :50051" , insecure_bearer_token_credentials (token ))
27
27
await write_test_schema (client )
28
28
29
29
30
- @pytest .mark .remote_calls
30
+ @pytest .mark .skip ( reason = "Makes a remote call that we haven't yet supported in CI" )
31
31
async def test_normal_sync_client_raises_error_on_insecure_remote_call (token ):
32
32
with pytest .raises (grpc .RpcError ):
33
33
client = SyncClient (f"{ remote_host } :50051" , insecure_bearer_token_credentials (token ))
34
34
await write_test_schema (client )
35
35
36
36
37
- @pytest .mark .remote_calls
37
+ @pytest .mark .skip ( reason = "Makes a remote call that we haven't yet supported in CI" )
38
38
async def test_insecure_client_makes_insecure_remote_call (token ):
39
39
insecure_client = InsecureClient (f"{ remote_host } :50051" , token )
40
40
await write_test_schema (insecure_client )
You can’t perform that action at this time.
0 commit comments