-
Notifications
You must be signed in to change notification settings - Fork 13
82 lines (69 loc) · 1.97 KB
/
gluescript.yml
File metadata and controls
82 lines (69 loc) · 1.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Glue Script
on:
push:
branches:
- 'main'
pull_request:
paths:
- 'scripts/qesap/**'
- '.github/workflows/gluescript.yml'
env:
TF_VERSION: 1.5.7
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# all available versions are in https://raw.githubusercontent.com/actions/python-versions/refs/heads/main/versions-manifest.json
python-version: ['3.10.18', '3.11.13', '3.12.11', '3.13.8']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: PyLint with tox
working-directory: scripts/qesap/
run: tox -e pylint
env:
PLATFORM: ${{ matrix.platform }}
- name: flake8 with tox
working-directory: scripts/qesap/
run: tox -e flake8
env:
PLATFORM: ${{ matrix.platform }}
- name: flake8 test code with tox
working-directory: scripts/qesap/
run: |
tox -e flake8_test
env:
PLATFORM: ${{ matrix.platform }}
- name: UT tox
working-directory: scripts/qesap/
run: tox
env:
PLATFORM: ${{ matrix.platform }}
- name: Test UT variants
working-directory: scripts/qesap/
run: |
tox -e pytest_verbose
tox -e pytest_hypo
tox -e pytest_finddep
env:
PLATFORM: '3.11.13'
# Install the specific version of Terraform that the project support and
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: ${{ env.TF_VERSION }}
terraform_wrapper: false
- name: Test e2e
run: |
python -m pip install -r requirements.txt
ansible-galaxy install -r requirements.yml
make test-e2e