Add archive helpers and harden task runtime
This commit is contained in:
+1
-1
@@ -77,5 +77,5 @@ Each callback receives a `TestContext` and may use helpers such as:
|
||||
## Included Plugins
|
||||
|
||||
- `uce_http_smoke.py`: HTTP 200/body-marker checks for stable published doc pages
|
||||
- `uce_site_suite.py`: HTTP 200/body-marker checks for the published `site/tests` coverage pages; local-only pages are tagged `internal`
|
||||
- `uce_site_suite.py`: HTTP 200/body-marker checks for the published `site/tests` coverage pages; local-only pages such as filesystem, ZIP, services, and tasks are tagged `internal`
|
||||
- `uce_tcp_smoke.py`: basic TCP listener checks, with public smoke checks on port 80 and an internal-only HTTP/WebSocket listener probe on port `8080` tagged `internal`
|
||||
@@ -4,6 +4,8 @@ def register(registry):
|
||||
("doc singlepage", "/doc/singlepage.uce", "<html>"),
|
||||
("doc component page", "/doc/index.uce?p=component", "component()"),
|
||||
("doc regex page", "/doc/index.uce?p=regex_search", "regex_search"),
|
||||
("doc xml page", "/doc/index.uce?p=xml_encode", "xml_encode"),
|
||||
("doc yaml page", "/doc/index.uce?p=yaml_encode", "yaml_encode"),
|
||||
("doc relative time page", "/doc/index.uce?p=time_format_relative", "time_format_relative"),
|
||||
]
|
||||
|
||||
|
||||
@@ -17,6 +17,7 @@ def register(registry):
|
||||
("site tests units", "/tests/units.uce", "Units", ["http", "suite", "uce", "public"]),
|
||||
("site tests websockets page", "/tests/websockets.ws.uce", "WebSockets", ["http", "suite", "uce", "public", "websocket"]),
|
||||
("site tests filesystem", "/tests/io.uce", "Filesystem", ["http", "suite", "uce", "internal"]),
|
||||
("site tests zip", "/tests/zip.uce", "ZIP", ["http", "suite", "uce", "internal"]),
|
||||
("site tests services", "/tests/services.uce", "Sockets And Services", ["http", "suite", "uce", "internal"]),
|
||||
("site tests tasks", "/tests/tasks.uce", "Tasks", ["http", "suite", "uce", "internal"]),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user