Skip to content

Commit 99c661a

Browse files
committed
prepared pytest-slc release 0.4.3 and other stuff
1 parent 8fc58be commit 99c661a

File tree

9 files changed

+175
-174
lines changed

9 files changed

+175
-174
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,11 @@ jobs:
9494
path: ${{ matrix.working-directory }}/.coverage
9595
include-hidden-files: true
9696

97+
merge-gate:
98+
name: Merge Gate
99+
needs: [ fast-checks, slow-tests ]
100+
runs-on: ubuntu-24.04
101+
97102
metrics:
98103
needs: [ set-project-matrix, fast-checks, slow-tests ]
99104
strategy:
Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# Unreleased
22

3-
## Summary
3+
## Internal
44

5-
This release removes the override `8.18.0` in favor of using the default Docker DB version as defined by ITDE.
6-
7-
## Features
8-
9-
* #139: Removed override `8.18.0` for default Docker DB version used by ITDE
5+
* #140: Ensured that a proper project-short-tag is used in SaaS tests.
6+
* #141: Added a Merge Gate to the CI Workflow.

pytest-backend/test/integration/pytest_backend_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ def test_backend_aware_bucketfs_params(backend_aware_bucketfs_params):
4646
"""
4747
)
4848
pytester.makepyfile(test_code)
49-
result = pytester.runpytest(BACKEND_OPTION, BACKEND_ALL)
49+
result = pytester.runpytest(
50+
BACKEND_OPTION, BACKEND_ALL, "--project-short-tag", "PYTBE"
51+
)
5052
assert result.ret == pytest.ExitCode.OK
5153
result.assert_outcomes(passed=4, skipped=0)
5254

pytest-slc/doc/changes/changelog.md

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# 0.4.3 - 2025-12-12
2+
3+
## Internal
4+
5+
* #123: Re-locked dependencies to resolve pip vulnerability associated with CVE-2025-8869 and update to exasol-toolbox 1.13.0
6+
* #129: Re-locked dependencies to resolve CVE-2025-66471 (urllib3) and update to exasol-toolbox 3.0.0
Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
11
# Unreleased
2-
3-
## Internal
4-
5-
* #123: Re-locked dependencies to resolve pip vulnerability associated with CVE-2025-8869 and update to exasol-toolbox 1.13.0
6-
* #129: Re-locked dependencies to resolve CVE-2025-66471 (urllib3) and update to exasol-toolbox 3.0.0

pytest-slc/exasol/pytest_slc/version.py

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pytest-slc/poetry.lock

Lines changed: 154 additions & 160 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pytest-slc/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pytest-exasol-slc"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
requires-python = ">=3.10,<3.14"
55
description = ""
66
authors = [

0 commit comments

Comments
 (0)