2023-06-08 05:33:15 +02:00
|
|
|
# This workflow will install Python dependencies, run tests and lint with a single version of Python
|
|
|
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
|
|
|
|
|
2023-06-08 05:28:10 +02:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-06-08 05:33:15 +02:00
|
|
|
branches: [ "master" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "master" ]
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
2023-06-08 05:28:10 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-06-08 05:33:15 +02:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python 3.11
|
|
|
|
uses: actions/setup-python@v3
|
|
|
|
with:
|
|
|
|
python-version: "3.11"
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
2023-06-13 08:37:37 +02:00
|
|
|
pip install pytest
|
2023-07-11 19:38:51 +02:00
|
|
|
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
|
2023-06-08 05:33:15 +02:00
|
|
|
- name: Test with pytest
|
2023-06-08 05:28:10 +02:00
|
|
|
run: |
|
2023-07-08 10:38:33 +02:00
|
|
|
mv demo/config.py.simple demo/config.py
|
2023-07-11 19:00:57 +02:00
|
|
|
mv tests/test_key.pem data/key.pem
|
2023-06-13 11:12:59 +02:00
|
|
|
pytest -vvv
|