Skip to content

adding test sets with FM to datset #176

adding test sets with FM to datset

adding test sets with FM to datset #176

Workflow file for this run

name: Check Syntax and Run Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install flake8
run: |
pip install flake8
- name: Lint with flake8
run: |
flake8 . --count --show-source --statistics
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
pip install . -v
- name: Install pytest
run: |
pip install pytest
- name: Test with pytest
run: |
pytest --ignore=noxfile.py .