-
Notifications
You must be signed in to change notification settings - Fork 33
39 lines (36 loc) · 1.38 KB
/
python_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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python Tests
on: [push, pull_request]
jobs:
run-pytest:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y libasound2-dev qt6-base-dev qt6-tools-dev-tools
pip install --upgrade pip
pip install --upgrade setuptools
pip install flake8 pytest
pip install --ignore-installed -r requirements.txt
bash setup-environment.ps1
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 src/ --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings.
flake8 src/ --count --exit-zero --statistics
- name: Test with pytest
run: pytest -v
- name: Typecheck with mypy
run: mypy src/main/python/main