From c0d30fe5a6225608258d5c5ef334bdb45b471f67 Mon Sep 17 00:00:00 2001 From: Zuzu-Typ Date: Mon, 21 Oct 2024 11:26:23 +0200 Subject: [PATCH] Update python-package.yml Using `pip install .` instead of `python -m build` --- .github/workflows/python-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 5c97ed8..fb2e729 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -26,10 +26,10 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest build + pip install pytest - name: Install Package run: | - python -m build + python -m pip install . - name: Test with pytest run: | pytest tests