forked from canonical/operator
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (30 loc) · 1.02 KB
/
hello-charm-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
name: Hello Charm Tests
on: [push, pull_request, workflow_call]
jobs:
hello-charm-tests:
runs-on: ubuntu-latest
strategy:
matrix:
charm-repo:
- "jnsgruk/hello-kubecon"
- "juju/hello-juju-charm"
steps:
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Checkout the ${{ matrix.charm-repo }} repository
uses: actions/checkout@v3
with:
repository: ${{ matrix.charm-repo }}
- name: Remove 'ops' from charm requirements.txt
run: |
sed -i -e "/^ops[ ><=]/d" -e "/canonical\/operator/d" -e "/#egg=ops/d" requirements.txt
TEST_OPS="git+$GITHUB_SERVER_URL/$GITHUB_REPOSITORY@$GITHUB_SHA#egg=ops"
echo -e "\n${TEST_OPS}" >> requirements.txt
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Run the charm tests
run: |
export PYTHONPATH="lib:src:$PYTHONPATH"
python3 -m unittest