-
Notifications
You must be signed in to change notification settings - Fork 2
76 lines (66 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Testing & Coverage
on:
pull_request:
# paths:
# - '**/*.py'
# - poetry.lock
workflow_dispatch:
jobs:
run_game-py:
runs-on: ubuntu-latest
container:
image: python:3.9
steps:
- uses: actions/checkout@v4.1.0
- name: Check Python version
run: python --version
- name: Install Poetry
run: |
export POETRY_VERSION=1.4.0
curl -sSkL https://install.python-poetry.org | python -
export PATH=$PATH:$HOME/.local/bin
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: Run run_game.py
run: |
export PATH=$PATH:$HOME/.local/bin
SDL_VIDEODRIVER="dummy" poetry run python run_game.py
coverage:
runs-on: ubuntu-latest
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: |
export POETRY_VERSION=1.4.0
curl -sSkL https://install.python-poetry.org | python -
export PATH=$PATH:$HOME/.local/bin
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=app simfire/ | tee pytest-coverage.txt
- name: Pytest coverage comment
uses: MishaKav/pytest-coverage-comment@main
with:
pytest-coverage-path: ./pytest-coverage.txt
junitxml-path: ./pytest.xml