From f5eb49a8111e9427a937a1e5a6cdb7ba3dffbb1c Mon Sep 17 00:00:00 2001 From: Peter Staar Date: Mon, 26 Aug 2024 16:26:17 +0200 Subject: [PATCH] add the pytests Signed-off-by: Peter Staar --- .github/workflows/checks.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 03fa81a0..fff22546 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -14,3 +14,10 @@ jobs: python-version: ${{ matrix.python-version }} - name: Run styling check run: poetry run pre-commit run --all-files + - name: Install with poetry + run: poetry install --all-extras + - name: Testing + run: | + poetry run pytest -v tests + - name: Build with poetry + run: poetry build \ No newline at end of file