Skip to content

Add test for open auth algorithm #15

Add test for open auth algorithm

Add test for open auth algorithm #15

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Test
on:
workflow_dispatch:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: false
strategy:
fail-fast: false
matrix:
python-version: [ "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Setup and Cache Python Poetry
uses: packetcoders/[email protected]
with:
python-version: ${{ matrix.python-version }}
poetry-version: "1.8.3"
install-args: --all-extras
- name: Lint with flake8
if: matrix.python-version == '3.12'
run: |
# stop the build if there are Python syntax errors or undefined names
poetry run flake8 ./pyown --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
poetry run flake8 ./pyown --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test code
if: matrix.python-version != '3.12'
run: poetry run pytest
- name: Test code with coverage
if: matrix.python-version == '3.12'
run: poetry run coverage run -m pytest && poetry run coverage report -m
continue-on-error: true