mirror of
https://github.com/openai/codex.git
synced 2026-09-04 15:08:45 +00:00
## What changed Add a cross-platform pytest suite that extracts the CLI and app-server archives and verifies: - common CLI discovery commands; - code-mode execution through both packaged entrypoints, including use of each package's bundled `rg`; and - the presence and usability of packaged debug symbols on Linux, macOS, and Windows. The suite accepts gzip or zstd package archives and isolates its Codex configuration and state from the invoking environment. GitOrigin-RevId: 25e517d349242c9f6226e95ef41e37a783e2373f
13 lines
197 B
TOML
13 lines
197 B
TOML
[project]
|
|
name = "codex-package-smoke-tests"
|
|
version = "0.0.0"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"pydantic>=2.12,<3",
|
|
"pytest>=8.0",
|
|
"zstandard>=0.23",
|
|
]
|
|
|
|
[tool.uv]
|
|
package = false
|