Skip to content

Commit

Permalink
Modified changes log entries for git hashes, removed delete_commit_id…
Browse files Browse the repository at this point in the history
…s_integration_test script from test-utils
  • Loading branch information
kedarnn committed Jan 24, 2025
1 parent 1e72ea4 commit ff137e0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 36 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

### 0.9.22-dev

* Added Git commit hashes to the `lobster-html-report` to track the exact version of the code used when executing the tool.
* `lobster-html-report` adds actual git commit hashes to the source in the HTML report.

* `lobster-online-report` - now contains the actual git commit hashes when the user executed the tool.
* `lobster-online-report` - now contains the actual git commit hashes when the user executes the tool.

* The configuration management for the `lobster-cpptest` tool has been migrated from command-line arguments to YAML configuration files.

Expand Down
4 changes: 2 additions & 2 deletions lobster/tools/core/online_report/online_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@ def main():

for item in report.items.values():
if isinstance(item.location, File_Reference):
assert os.path.isdir(item.location.filename) or \
os.path.isfile(item.location.filename)
assert (os.path.isdir(item.location.filename) or
os.path.isfile(item.location.filename))

rel_path_from_root = os.path.relpath(item.location.filename,
repo_root)
Expand Down
27 changes: 0 additions & 27 deletions tests-system/tests_utils/delete_commit_ids_integration_test.py

This file was deleted.

5 changes: 0 additions & 5 deletions tests-unit/lobster-core/online_report/test_online_report.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# please consider writing here your tests and set your tracing tags.
# This file will be used in the tracing report
# if any other file or files are used, make the needed
# adjsutments to tracing report target.
import argparse
import json
import os
import sys
Expand Down

0 comments on commit ff137e0

Please sign in to comment.