Skip to content

Making the MockContext tests running under Python 3.8 #100

Making the MockContext tests running under Python 3.8

Making the MockContext tests running under Python 3.8 #100

Workflow file for this run

name: Run pytest
on: [push, pull_request]
jobs:
pytest:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/actions-poetry@v2.1.4
- name: Install dependencies
run: poetry install
- name: Run pytest
run: poetry run python3 -m pytest