Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions test/scale/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""Prevent pytest from collecting scale test files.

These are integration tests that require a running Nexent instance
and should not be executed by the regular pytest/CI pipeline.
Run manually via: python test/scale/spec_test.py
"""
collect_ignore_glob = ["*"]
14 changes: 14 additions & 0 deletions test/scale/generate_report.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""
Regenerate final_test_report.md from existing spec/perf report files.
Usage: python test/scale/generate_report.py
"""
import sys
import os

sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))

from utils import generate_final_report_md

if __name__ == "__main__":
generate_final_report_md()
print("Report generated: test/scale/final_test_report.md")
Loading
Loading