Skip to content

gh action pytest: disable slow tests for now #22

gh action pytest: disable slow tests for now

gh action pytest: disable slow tests for now #22

Workflow file for this run

name: pytest
on:
push:
branches:
- '**'
pull_request:
types: [opened, synchronize, reopened]
jobs:
unittesting:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.7.1"
- name: Install the project dependencies
run: |
cd python
poetry install
- name: Run the automated tests
run: |
cd python
poetry run pytest tests -m "not slow"