Skip to content

chore: debug logging of e2e tests #550

chore: debug logging of e2e tests

chore: debug logging of e2e tests #550

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
- '!master'
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10.9, 3.11]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Check OpenSSL Version
run: openssl version
- name: Setup Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.4.2
- name: Install Dependencies
run: |
poetry install
- name: Run Lints
run: |
poetry run black -v --check .
poetry run flake8 -v --ignore=E501,W503,E722
- name: Run Tests
run: |
poetry run pytest -v