-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (39 loc) · 1.48 KB
/
py_unit_tests.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
# This is a basic workflow to run automated test-cases on GitHub App Action
name: Running Python Unit Tests for Splunk-App-Action
# Controls when the action will run. Triggers the workflow on push or pull request
on:
push:
branches:
- 'develop'
pull_request:
branches:
- '*'
- '*/*'
- '**'
workflow_dispatch:
jobs:
python-unit-tests:
name: "Running Python Unit Test Cases"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
- name: Run Python Unit Tests
run: pytest tests --junitxml=junit/test-results.xml --cov=src --cov-config=tests/.coveragerc --cov-report=xml
- name: Adding GitHub action step summary
uses: VatsalJagani/[email protected]
with:
pytest_results_file: "junit/test-results.xml"
pytest_cov_file: "coverage.xml"
pytest_cov_failure_threshold: 40
if: ${{ always() }}
- name: Linting with Ruff
run: ruff check --ignore=E721,E722,E401 --output-format=github .
# continue-on-error: true # need to remove this later on to catch the errors anf fail the workflow on linting errors