-
Notifications
You must be signed in to change notification settings - Fork 20
52 lines (45 loc) · 1.35 KB
/
test-python_worker-controller.yml
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
name: Python Tests - Worker Controller
on:
push:
branches:
- main
pull_request:
branches:
- main
- stable**
workflow_dispatch:
workflow_call:
jobs:
unittest:
env:
JUNIT_REPORT: pytest_worker-controller_report.xml
PLAT_BRANCH: ${{ github.ref }}
runs-on: ubuntu-22.04
steps:
- name: Branch selection (remote trigger)
if: inputs.platform_branch != ''
run: echo "PLAT_BRANCH=${{ inputs.platform_branch }}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v3
with:
repository: OasisLMF/OasisPlatform
ref: ${{ env.PLAT_BRANCH }}
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: |
pip install pytest
pip install -r kubernetes/worker-controller/requirements.txt
- name: Run Pytest
run: |
cd kubernetes/worker-controller/src
python -m pytest -v
# - name: Generate Report
# uses: dorny/test-reporter@v1
# if: success() || failure() # run this step even if previous step failed
# with:
# name: Pytest Results # Name of the check run which will be created
# path: ${{ env.JUNIT_REPORT }} # Path to test results
# reporter: java-junit # Format of test results
# fail-on-error: 'false'