Skip to content

Commit 44d8d5c

Browse files
committed
Remove insecure client tests from ci run
1 parent 834b08b commit 44d8d5c

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

.github/workflows/test.yaml

+1-7
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ jobs:
1313
pytest:
1414
name: "Unit and Integration Tests"
1515
runs-on: "ubuntu-latest"
16-
services:
17-
remote-spicedb:
18-
image: "authzed/spicedb"
19-
options: "--entrypoint 'spicedb serve-testing'"
2016
strategy:
2117
matrix:
2218
python-version:
@@ -43,11 +39,9 @@ jobs:
4339
with:
4440
version: "latest"
4541
- name: "Pytest"
46-
# NOTE: the -m "" overrides the default marks, which
47-
# selects the otherwise-unselected ci_only tests.
4842
run: |
4943
source ~/.cache/virtualenv/authzedpy/bin/activate
50-
pytest -vv -m ""
44+
pytest -vv
5145
5246
protobuf:
5347
name: "Generate & Diff Protobuf"

pyproject.toml

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

4949
[tool.pytest.ini_options]
50-
addopts = "-x -m \"not ci_only\""
50+
addopts = "-x -m \"not remote_calls\""
5151
log_level = "debug"
5252
minversion = "6.0"
5353
asyncio_mode = "auto"
5454
markers = [
55-
"ci_only: marks tests that will only run in CI"
55+
"remote_calls: marks tests that make remote calls, not normally run"
5656
]
5757

5858
[tool.isort]

tests/insecure_client_test.py

+9-5
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,34 @@
1010

1111
from .calls import write_test_schema
1212

13+
## NOTE: these tests aren't usually run. They theoretically could and theoretically
14+
# should be run in CI, but getting an appropriate "remote" container is difficult with
15+
# github actions; this will happen at some point in the future.
16+
# To run them: `poetry run pytest -m ""`
17+
1318
# NOTE: this is the name of the "remote" binding of the service container
1419
# in CI. These tests are only run in CI because otherwise setup is fiddly.
1520
# If you want to see these tests run locally, figure out your computer's
1621
# network-local IP address (typically 192.168.x.x) and make that the `remote_host`
1722
# string below, and then start up a testing container bound to that interface:
1823
# docker run --rm -p 192.168.x.x:50051:50051 authzed/spicedb serve-testing
19-
remote_host = "remote-spicedb"
20-
24+
remote_host = "192.168.something.something"
2125

22-
@pytest.mark.ci_only
26+
@pytest.mark.remote_calls
2327
async def test_normal_async_client_raises_error_on_insecure_remote_call(token):
2428
with pytest.raises(grpc.RpcError):
2529
client = AsyncClient(f"{remote_host}:50051", insecure_bearer_token_credentials(token))
2630
await write_test_schema(client)
2731

2832

29-
@pytest.mark.ci_only
33+
@pytest.mark.remote_calls
3034
async def test_normal_sync_client_raises_error_on_insecure_remote_call(token):
3135
with pytest.raises(grpc.RpcError):
3236
client = SyncClient(f"{remote_host}:50051", insecure_bearer_token_credentials(token))
3337
await write_test_schema(client)
3438

3539

36-
@pytest.mark.ci_only
40+
@pytest.mark.remote_calls
3741
async def test_insecure_client_makes_insecure_remote_call(token):
3842
insecure_client = InsecureClient(f"{remote_host}:50051", token)
3943
await write_test_schema(insecure_client)

0 commit comments

Comments
 (0)