Skip to content

Python2.7 custom reporting #21

Python2.7 custom reporting

Python2.7 custom reporting #21

Workflow file for this run

name: Run tests
on:
push:
branches: [ python2.7 ]
pull_request:
branches: [ python2.7 ]
jobs:
test:
strategy:
matrix:
python-version:
- "2.7"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements-test.txt
- name: Run tests
run: pytest