Skip to content

Move pytest install to dependencies install run #5

Move pytest install to dependencies install run

Move pytest install to dependencies install run #5

Workflow file for this run

name: Pytests
on: [push, pull_request]
jobs:
all-pytests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[all_extras]
python -m pip install pytest
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
#flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
#flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
python -m pytest