Skip to content

Commit be0c8e3

Browse files
committed
Modify PTB exasol_version to just one and modify template to use it when creating file
1 parent 952343c commit be0c8e3

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

exasol/toolbox/templates/github/workflows/slow-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ jobs:
3737
- name: Upload Artifacts
3838
uses: actions/upload-artifact@v5
3939
with:
40-
name: coverage-python${{ matrix.python-version }}-slow
40+
name: coverage-python${{ matrix.python-version }}-exasol${{ matrix.exasol-version }}-slow
4141
path: .coverage
4242
include-hidden-files: true

noxconfig.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,9 @@ class Config(BaseConfig):
6969
pyupgrade_args: Iterable[str] = ("--py39-plus", "--keep-runtime-typing")
7070

7171

72-
PROJECT_CONFIG = Config(create_major_version_tags=True)
72+
PROJECT_CONFIG = Config(
73+
create_major_version_tags=True,
74+
# The PTB does not have integration tests run with an Exasol DB,
75+
# so for running in the CI, we take the first element.
76+
exasol_versions=(BaseConfig().exasol_versions[0],),
77+
)

0 commit comments

Comments
 (0)