-
-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (71 loc) · 2.45 KB
/
pytests.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
81
name: pytest
# coverage is made up by multiple runs on different hosts
# self-hosted is a RPI and has hardware attached to test and gain high coverage
# after all jobs finished, coverage is uploaded as described here
# https://about.codecov.io/blog/uploading-code-coverage-in-a-separate-job-on-github-actions/
on: [push, pull_request]
permissions:
contents: read
jobs:
tests:
env:
syncedacquisition__camera_backends__active_backend: VirtualCamera
syncedacquisition__io_backends__active_backend: VirtualIo
runs-on: ubuntu-latest
continue-on-error: false
strategy:
fail-fast: true
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install system apt dependencies
run: |
sudo apt update
sudo apt -y install libturbojpeg python3-pip libgl1 git
- name: install pdm
run: |
pipx install pdm # on hosted pipx is installed
pdm install
- name: Run pytest
run: |
pdm run test
- uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.python-version }}
path: coverage.xml
tests-hardware-rpi:
# env:
## Sets environment variable
runs-on: [self-hosted, rpi]
if: ${{ github.repository_owner == 'photobooth-app' }}
steps:
- uses: actions/checkout@v4
- run: pipx install pdm
- run: pipx ensurepath
- run: pdm venv create --force 3.11 --system-site-packages # incl system site to allow for picamera2 to import
- run: pdm install # install in-project env
- name: Test with pytest
run: |
pdm run test
- uses: actions/upload-artifact@v4
with:
name: coverage-hardware-rpi
path: ./coverage.xml
upload-to-codecov:
needs: [tests,tests-hardware-rpi]
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'photobooth-app' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
- name: Upload to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}