simplify entrypoints for orchestrator and workers

This commit is contained in:
Nick Sweeting
2026-01-04 13:17:07 -08:00
parent 5449971777
commit 839ae744cf
13 changed files with 301 additions and 350 deletions

View File

@@ -206,6 +206,12 @@ def test_config_save_screenshot_false_skips():
env = os.environ.copy()
env['SCREENSHOT_ENABLED'] = 'False'
# DEBUG: Check if NODE_V8_COVERAGE is in env
if 'NODE_V8_COVERAGE' in env:
print(f"\n[DEBUG] NODE_V8_COVERAGE in env: {env['NODE_V8_COVERAGE']}")
else:
print("\n[DEBUG] NODE_V8_COVERAGE NOT in env")
result = subprocess.run(
['node', str(SCREENSHOT_HOOK), f'--url={TEST_URL}', '--snapshot-id=test999'],
cwd=tmpdir,