-
Notifications
You must be signed in to change notification settings - Fork 2
80 lines (63 loc) · 1.99 KB
/
python-mutation-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
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
name: Python mutation tests
on:
workflow_dispatch:
schedule:
- cron: '30 3 * * *'
# Todo; remove the push, they take to long
push:
branches:
- add-mutation-testing
jobs:
cosmic-ray:
name: Python mutation tests - Cosmic Ray
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python --version
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run mutation tests
run: |
# Todo: Drop the --force, it just here for easy local copy and paste
poetry run cosmic-ray init cosmic-ray.toml cosmic-ray.sqlite --force
echo "Initialised"
poetry run cosmic-ray --verbosity INFO exec cosmic-ray.toml cosmic-ray.sqlite
- name: Report results
# Todo: Only show failures https://github.com/sixty-north/cosmic-ray/issues/561
run: poetry run cr-report cosmic-ray.sqlite --show-diff
mutmut:
name: Python mutation tests - mutmut
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python --version
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run mutation tests
run: |
poetry run mutmut run
- name: Report results
# Todo: Only show failures https://github.com/sixty-north/cosmic-ray/issues/561
run: poetry run mutmut results