-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (46 loc) · 1.39 KB
/
testing.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: Testing & Coverage
on:
pull_request:
paths:
- 'simfire/**/*.py'
- poetry.lock
workflow_dispatch:
jobs:
coverage:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
id-token: write
container:
image: python:3.9
timeout-minutes: 20
steps:
- uses: actions/checkout@v4.1.0
- name: Check Python version
run: python --version
- name: Install Poetry
run: |
curl -sSkL https://install.python-poetry.org | python -
export PATH=$PATH:$HOME/.local/bin
poetry --version
env:
POETRY_VERSION: ${{ vars.POETRY_VERSION }}
- name: Install libgl1-mesa-dev
run: |
apt update
apt -y install libgl1-mesa-dev
- name: Install Dependencies
run: |
export PATH=$PATH:$HOME/.local/bin
poetry install --with coverage
- name: Build Coverage File
run: |
export PATH=$PATH:$HOME/.local/bin
poetry run pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=simfire | tee pytest-coverage.txt
- name: Comment on PR with Coverage
continue-on-error: true # To let people create forked PRs
uses: MishaKav/pytest-coverage-comment@main
with:
pytest-coverage-path: ./pytest-coverage.txt
junitxml-path: ./pytest.xml