Skip to content

Ignoring NN.modules arguments #30

Ignoring NN.modules arguments

Ignoring NN.modules arguments #30

name: Unittest
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install numpy
run: |
pip install numpy coverage flake8
- name: Test unittests
run: |
python -m coverage run -m unittest discover -s ./test -p 'test_*.py'
- name: Coverage
run: |
coverage report --include=ctrl_c_nn.py
- name: Lint with flake8
run: |
flake8 ctrl_c_nn.py --ignore=E202,E501,F401,E226 --count --show-source --statistics --exit-zero
# # 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