-
Notifications
You must be signed in to change notification settings - Fork 9
48 lines (40 loc) · 1015 Bytes
/
pytest.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
name: Pytest
on:
push:
branches:
- main
- feature_thomas
- feature_moheth
- feature_bardia
- feature_komal
- feature_ashkan
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run linting tests
run: pytest --pylint
continue-on-error: false
- name: Run tests and generate XML report
run: pytest --junitxml=pytest-report.xml
continue-on-error: false
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
with:
name: pytest-results
path: pytest-report.xml
- name: Notify on success
if: success()
run: echo "Tests passed successfully"
- name: Notify on failure
if: failure()
run: echo "Tests failed"