-
Notifications
You must be signed in to change notification settings - Fork 3
29 lines (25 loc) · 997 Bytes
/
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Tests, Coverage, Static Types and Style
on: [pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10']
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 dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y python-dev-is-python3 libldap2-dev libsasl2-dev libssl-dev
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Test with pytest
run: |
PYTHONPATH=. pytest -m "not flake8 and not mypy" --cov=. --cov-report term-missing