27 lines
985 B
Plaintext
27 lines
985 B
Plaintext
# DGR-006 exact commands (run from repo worktree root)
|
|
|
|
# Targeted boundary-adapter tests
|
|
python -m pytest -q tests/test_boundary_adapter.py
|
|
# -> 22 passed in 0.26s
|
|
|
|
# Python compile check for changed Python
|
|
python -m compileall -q packages tests
|
|
# -> exit 0
|
|
|
|
# Diff hygiene
|
|
git diff --check
|
|
# -> exit 0
|
|
|
|
# Full deterministic suite with DGR-006 files present
|
|
python -m pytest -q -rfE
|
|
# -> 20 failed, 715 passed, 13 skipped, 12 errors in 239.77s
|
|
|
|
# Clean-tree reproduction: move the two new DGR-006 files aside, re-run
|
|
mv packages/node/meshnet_node/boundary_adapter.py /tmp/dgr006_boundary_adapter.py
|
|
mv tests/test_boundary_adapter.py /tmp/dgr006_test_boundary_adapter.py
|
|
python -m pytest -q -rfE
|
|
# -> 20 failed, 693 passed, 13 skipped, 12 errors in 243.10s
|
|
# (693 = 715 - 22; failure/error set byte-identical to the with-files run)
|
|
mv /tmp/dgr006_boundary_adapter.py packages/node/meshnet_node/boundary_adapter.py
|
|
mv /tmp/dgr006_test_boundary_adapter.py tests/test_boundary_adapter.py
|