Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ab883b0
WIP: First pass at supporting codex+relay
dagardner-nv Jun 30, 2026
b5e9837
WIP
dagardner-nv Jun 30, 2026
3ce9758
The nemo-relay command (not the lib) locates the plugins config file …
dagardner-nv Jun 30, 2026
795a980
Update to not add --plugin-config since that flag only accepts JSON s…
dagardner-nv Jun 30, 2026
4fc870c
Add relay artifacts
dagardner-nv Jun 30, 2026
92dead3
Add codex relay configs
dagardner-nv Jun 30, 2026
89fa8ad
refactor profiles to be stackable
dagardner-nv Jun 30, 2026
f31995f
Consolidate profiles
dagardner-nv Jun 30, 2026
cc3c611
Fix undefined variable error
dagardner-nv Jun 30, 2026
f3e714c
Update tests
dagardner-nv Jun 30, 2026
93b9d41
Move runtime_session_id from hermes.py to utils.py since it is not he…
dagardner-nv Jun 30, 2026
0612397
Consolidate load_payload methods
dagardner-nv Jun 30, 2026
1e288d6
WIP: not working
dagardner-nv Jul 1, 2026
f1bfd67
Write out a codex toml file, and change CODEX_HOME env
dagardner-nv Jul 1, 2026
a1e6a13
Write out a codex profile on the fly with the relay hooks config
dagardner-nv Jul 1, 2026
2d0debd
Move config overrides into the toml
dagardner-nv Jul 1, 2026
b56252f
Only pass --dangerously-bypass-hook-trust when using relay
dagardner-nv Jul 1, 2026
a25bcc1
Simplify relay shutdown
dagardner-nv Jul 1, 2026
3067812
Don't pass a full env to nemo-relay
dagardner-nv Jul 1, 2026
a0f601b
Just use os.environ not monkeypatch
dagardner-nv Jul 1, 2026
e6ed142
Test for relay specific entried
dagardner-nv Jul 1, 2026
bb2c224
Remove unused fixture
dagardner-nv Jul 1, 2026
cddffff
Remove unnecessary test
dagardner-nv Jul 1, 2026
e2b4bf5
Remove hardcoded temp path
dagardner-nv Jul 1, 2026
97c7948
Merge branch 'main' of github.com:NVIDIA/NeMo-Fabric into david-expan…
dagardner-nv Jul 2, 2026
3022968
Update test to reflect that settings are now baked into the codex pro…
dagardner-nv Jul 2, 2026
4d4304e
Move relay artifacts into runtime specific output dirs
dagardner-nv Jul 2, 2026
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
1 change: 1 addition & 0 deletions .agents/skills/python-tests/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ license: Apache-2.0
- Prefer `pytest.mark.parametrize` over creating individual tests for
different input types.
- If a fixture is needed for a test, but either does not return a value or the value is not used in the test, use the `@pytest.mark.usefixtures` decorator.
- `tests/conftest.py` contains a `restore_environ_fixture` fixture that restores the environment variables to their original state after each test, it is defined with `autouse=True` so it is automatically applied to all tests. If you need to modify the environment variables in a test, do so using `os.environ` and the fixture will restore them after the test completes. There is no need to use `monkeypatch.setenv` to modify environment variables in tests.

## Common Commands

Expand Down
Loading
Loading