Skip to content
Open
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ reportMissingImports = false # Ignore missing stubs in imported modules

[tool.pytest.ini_options]
# Run pytest with all our checkers, and don't spam us with massive tracebacks on error
addopts = '--tb=native -vv --doctest-modules --doctest-glob="*.rst"'
addopts = '--tb=native -vv --doctest-modules --doctest-glob="*.rst" --ignore=tests/system_tests/services'
# https://iscinumpy.gitlab.io/post/bound-version-constraints/#watch-for-warnings
filterwarnings = ["error", "ignore::DeprecationWarning"]
# Doctest python code in docs, python code in src docstrings, test functions in tests
Expand Down
21 changes: 17 additions & 4 deletions tests/system_tests/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ services:
- KC_BOOTSTRAP_ADMIN_USERNAME=admin
- KC_HOSTNAME=http://localhost:8081
command: ["start-dev"]
volumes:
- ./services/keycloak_config/:/tmp/config/
post_start:
- command: bash /tmp/config/startup.sh
ports:
- 8081:8080
healthcheck:
Expand All @@ -50,6 +46,23 @@ services:
security_opt:
- label=disable

configure-services:
image: ghcr.io/astral-sh/uv:python3.13-alpine
network_mode: host
volumes:
- ./services/startup.py:/startup.py:ro
environment:
- KEYCLOAK_SERVER=http://localhost:8081
- KC_BOOTSTRAP_ADMIN_PASSWORD=admin
- KC_BOOTSTRAP_ADMIN_USERNAME=admin
- KEYCLOAK_REALM=master
command: ["uv", "run", "/startup.py"]
depends_on:
keycloak:
condition: service_healthy
security_opt:
- label=disable

tiled:
image: ghcr.io/bluesky/tiled:0.2.12
network_mode: host # Port 8407
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

106 changes: 0 additions & 106 deletions tests/system_tests/services/keycloak_config/startup.sh

This file was deleted.

Loading
Loading