test-reporting 3.6.3__tar.gz → 3.6.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {test_reporting-3.6.3/test_reporting.egg-info → test_reporting-3.6.4}/PKG-INFO +1 -1
- {test_reporting-3.6.3 → test_reporting-3.6.4}/reporting/storage.py +7 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/setup.py +1 -1
- {test_reporting-3.6.3 → test_reporting-3.6.4/test_reporting.egg-info}/PKG-INFO +1 -1
- {test_reporting-3.6.3 → test_reporting-3.6.4}/LICENSE +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/README.md +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/reporting/__init__.py +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/reporting/classifier.py +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/reporting/cli.py +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/reporting/config.py +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/reporting/plugin.py +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/reporting/publisher.py +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/reporting/templates/index.html +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/reporting/templates/project.html +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/reporting/templates/run.html +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/setup.cfg +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/test_reporting.egg-info/SOURCES.txt +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/test_reporting.egg-info/dependency_links.txt +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/test_reporting.egg-info/entry_points.txt +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/test_reporting.egg-info/requires.txt +0 -0
- {test_reporting-3.6.3 → test_reporting-3.6.4}/test_reporting.egg-info/top_level.txt +0 -0
|
@@ -187,6 +187,13 @@ class TestResultStorage:
|
|
|
187
187
|
except sqlite3.OperationalError:
|
|
188
188
|
conn.execute('ALTER TABLE test_results ADD COLUMN is_retry BOOLEAN DEFAULT 0')
|
|
189
189
|
print("[Reporting] Migration: Added 'is_retry' column to test_results")
|
|
190
|
+
|
|
191
|
+
# Migration: Add run_tag to test_runs
|
|
192
|
+
try:
|
|
193
|
+
conn.execute('SELECT run_tag FROM test_runs LIMIT 1')
|
|
194
|
+
except sqlite3.OperationalError:
|
|
195
|
+
conn.execute('ALTER TABLE test_runs ADD COLUMN run_tag TEXT')
|
|
196
|
+
print("[Reporting] Migration: Added 'run_tag' column to test_runs")
|
|
190
197
|
|
|
191
198
|
def save_test_run(self, run_data: Dict[str, Any]) -> int:
|
|
192
199
|
"""Save a test run and return the run ID."""
|
|
@@ -9,7 +9,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
9
9
|
|
|
10
10
|
setup(
|
|
11
11
|
name='test-reporting',
|
|
12
|
-
version='3.6.
|
|
12
|
+
version='3.6.4',
|
|
13
13
|
description='Multi-project test reporting dashboard — collect results locally or push to S3',
|
|
14
14
|
long_description=long_description,
|
|
15
15
|
long_description_content_type="text/markdown",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|