Skip to content

Commit

Permalink
Merge pull request #219 from NeuroBench/feature/unittests
Browse files Browse the repository at this point in the history
Enhance and automate unittests
  • Loading branch information
jasonlyik authored Jun 5, 2024
2 parents d2e690d + 49011a7 commit 30e0812
Show file tree
Hide file tree
Showing 12 changed files with 2,517 additions and 2,309 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/python-style-check.yaml

This file was deleted.

68 changes: 68 additions & 0 deletions .github/workflows/python-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Test code and documentation

on:
push:
branches:
- dev
pull_request:
branches:
- dev


jobs:
test-code-style:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: |
poetry install --with code-quality
- name: Check with Black
run: |
poetry run black .
- name: Check with docformatter
run: |
poetry run docformatter .
- name: Run Flake8
run: |
poetry run pflake8 .
test-code:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: |
python -m pip install --upgrade pip
poetry install --with dev
- name: Run tests
run: |
poetry run pytest
Loading

0 comments on commit 30e0812

Please sign in to comment.