-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (46 loc) · 1.39 KB
/
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
name: Run Tests and Linting
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10' # Adjust this to match your project's Python version
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: |
poetry install
- name: Run Flake8
run: poetry run flake8 mind_renderer/
- name: Run isort
run: poetry run isort --check-only .
- name: Install pytest and coverage
run: |
poetry add pytest-cov
- name: Run Pytest with coverage
run: |
poetry run pytest -vv --cov=mind_renderer --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
- name: Check coverage threshold
run: |
coverage_percentage=$(poetry run coverage report | grep TOTAL | awk '{print $4}' | sed 's/%//')
if (( $(echo "$coverage_percentage < 80" | bc -l) )); then
echo "Coverage is below 80%. Current coverage: $coverage_percentage%"
exit 1
fi