-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (36 loc) · 1.23 KB
/
slow-checks.yml
File metadata and controls
42 lines (36 loc) · 1.23 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
name: Slow-Checks
on:
workflow_call:
jobs:
run-integration-tests:
name: Run Integration Tests
runs-on: "ubuntu-24.04"
permissions:
contents: read
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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: "3.10"
poetry-version: "2.3.0"
- name: Run Tests and Collect Coverage
run: poetry run -- nox -s test:integration -- --coverage
env:
SAAS_HOST: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_HOST }}
SAAS_ACCOUNT_ID: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_ACCOUNT_ID }}
SAAS_PAT: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_PAT }}
PROJECT_SHORT_TAG: SAPIPY
PYTEST_ADDOPTS: '-o log_cli=true -o log_cli_level=INFO'
- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v7
with:
name: coverage-python3.10-slow
path: .coverage
include-hidden-files: true