Skip to content

Commit a587a5f

Browse files
authored
Prepare release 4.8.1 (#1122)
1 parent 73bb0c9 commit a587a5f

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,18 @@
66

77

88
### Changed
9+
- Use npm ci in e2e-cypress quickstarter & Better TypeScript support in e2e-cypress quickstarter ([#1114](https://github.com/opendevstack/ods-quickstarters/pull/1114))
10+
- e2e-cypress get rid of additional chrome installation and switch to edge for pdf generation ([#1112](https://github.com/opendevstack/ods-quickstarters/pull/1112))
11+
12+
### Fixed
913

1014

15+
## [4.8.1] - 2025-5-13
16+
1117
### Fixed
1218

19+
- Fix in the Python/Flask Quickstarter Unit tests ([#1121](https://github.com/opendevstack/ods-quickstarters/pull/1121))
20+
1321

1422
## [4.8.0] - 2025-4-10
1523

be-python-flask/Jenkinsfile.template

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,16 @@ def stageTestSuite(def context) {
5151
script: """
5252
. ./testsuite/bin/activate
5353
PYTHONPATH=src python3.12 -m pytest --junitxml=tests.xml -o junit_family=xunit2 --cov-report term-missing --cov-report xml --cov=src -o testpaths=tests
54-
mv tests.xml ${testLocation}
55-
mv coverage.xml ${coverageLocation}
56-
mv .coverage ${coverageLocation}
5754
""",
5855
returnStatus: true
5956
)
6057

58+
sh """
59+
mv tests.xml ${testLocation} || true
60+
mv coverage.xml ${coverageLocation} || true
61+
mv .coverage ${coverageLocation} || true
62+
"""
63+
6164
if (status != 0) {
6265
error "Unit tests failed!"
6366
}

0 commit comments

Comments
 (0)