diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index ba39542..825ebf1 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -34,21 +34,10 @@ jobs: cache: 'poetry' - name: Install Dependencies - run: | - python -m pip install --upgrade pip - poetry install - pip install pytest - - - name: Install Package Locally - run: | - poetry build - pip install dist/*.whl # Install the built package to fix "No module named 'deeptabular'" + run: poetry install - name: Run Unit Tests - env: - PYTHONPATH: ${{ github.workspace }} # Ensure the package is discoverable - run: poetry run pytest tests/ - shell: bash + run: poetry run pytest tests/ -v - name: Verify Tests Passed if: ${{ success() }}