-
Notifications
You must be signed in to change notification settings - Fork 13
97 lines (82 loc) · 2.43 KB
/
tests.yaml
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: Test Suite
on:
- pull_request
jobs:
call-inclusive-naming-check:
name: Inclusive naming
uses: canonical-web-and-design/Inclusive-naming/.github/workflows/woke.yaml@main
with:
fail-on-error: "true"
lint-unit:
name: Lint Unit
uses: charmed-kubernetes/workflows/.github/workflows/lint-unit.yaml@main
with:
python: "['3.8', '3.9', '3.10', '3.11']"
needs:
- call-inclusive-naming-check
integration-test-2-9:
name: Integration test with juju
runs-on: ubuntu-22.04
timeout-minutes: 40
strategy:
matrix:
juju: ['2.9']
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Setup operator test environment
uses: charmed-kubernetes/actions-operator@main
with:
charm-channel: 3.x/stable
juju-channel: ${{ matrix.juju }}/stable
- name: Run integration tests
run: tox -e integration-2.9
- name: Collect Charmcraft Logs
if: ${{ failure() }}
run: |
mkdir -p tmp/
mv $HOME/.local/state/charmcraft/log/* tmp/ | true
cp ${GITHUB_WORKSPACE}/pytest-operator/pytest-operator/.tox/integration*/tmp/*.charm tmp/ | true
- name: Upload debug artifacts
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: test-run-artifacts
path: tmp
integration-test:
name: Integration test with juju
runs-on: ubuntu-22.04
timeout-minutes: 40
strategy:
matrix:
juju: ['3.1', '3.3']
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Setup operator test environment
uses: charmed-kubernetes/actions-operator@main
with:
charm-channel: 3.x/stable
juju-channel: ${{ matrix.juju }}/stable
- name: Run integration tests
run: tox -e integration
- name: Collect Charmcraft Logs
if: ${{ failure() }}
run: |
mkdir -p tmp/
mv $HOME/.local/state/charmcraft/log/* tmp/ | true
cp ${GITHUB_WORKSPACE}/pytest-operator/pytest-operator/.tox/integration*/tmp/*.charm tmp/ | true
- name: Upload debug artifacts
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: test-run-artifacts
path: tmp