Skip to content

modified github workflow #6

modified github workflow

modified github workflow #6

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://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: naturelifecert-tests
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
env:
DISPLAY: :1
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest,]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install .
- name: Install Test dependencies
run: |
python -m pip install pytest coverage flake8
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
cd nubislifecert
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: |
pytest --cov-report term-missing --cov=src tests