-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (41 loc) · 1.33 KB
/
slow-checks.yml
File metadata and controls
46 lines (41 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Slow-Checks
on:
workflow_call:
jobs:
build-matrix:
name: Build Matrix
uses: ./.github/workflows/matrix-all.yml
permissions:
contents: read
run-integration-tests:
name: Integration Tests (Python-${{ matrix.python-version }}, Exasol-${{ matrix.exasol-version}})
needs:
- build-matrix
runs-on: "ubuntu-24.04"
permissions:
contents: read
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.build-matrix.outputs.matrix) }}
steps:
- name: Check out Repository
id: check-out-repository
uses: actions/checkout@v6
- name: Set up Python & Poetry Environment
id: set-up-python-and-poetry-environment
uses: exasol/python-toolbox/.github/actions/python-environment@v6
with:
python-version: ${{ matrix.python-version }}
poetry-version: "2.3.0"
- name: Run Integration Tests
id: run-integration-tests
run: poetry run -- nox -s test:integration -- --coverage
- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v6
with:
name: coverage-python${{ matrix.python-version }}-exasol${{ matrix.exasol-version }}-slow
path: .coverage
include-hidden-files: true