Skip to content

Commit 5d98ad9

Browse files
authored
Merge pull request #557 from scottmwyant/3.x
Update report.py to work with Windows path separator
2 parents e18ef03 + f360b03 commit 5d98ad9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
run: ./gradlew build
4242

4343
- name: Upload specification artifact
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: sparkplug_spec
4747
path: specification/build/docs/pdf/sparkplug_spec.pdf
4848
if-no-files-found: error
4949

5050
- name: Upload coverage artifact
51-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5252
with:
5353
name: coverage-report
5454
path: tck/build/coverage-report/**/*

tck/report.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ def export_html(profile, results, reqs):
312312
for file in files:
313313
if not file.endswith("TCKTest.java"):
314314
print("Processing", file)
315+
file = file.replace("\\", "/")
315316
ids = process(file)
316317
#print(ids)
317318
if file.find("test/broker") != -1:

0 commit comments

Comments
 (0)