We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b2964c7 + 03e3146 commit 3c21591Copy full SHA for 3c21591
.github/workflows/pr-tests.yml
@@ -34,21 +34,10 @@ jobs:
34
cache: 'poetry'
35
36
- name: Install Dependencies
37
- run: |
38
- python -m pip install --upgrade pip
39
- poetry install
40
- pip install pytest
41
-
42
- - name: Install Package Locally
43
44
- poetry build
45
- pip install dist/*.whl # Install the built package to fix "No module named 'deeptabular'"
+ run: poetry install
46
47
- name: Run Unit Tests
48
- env:
49
- PYTHONPATH: ${{ github.workspace }} # Ensure the package is discoverable
50
- run: poetry run pytest tests/
51
- shell: bash
+ run: poetry run pytest tests/ -v
52
53
- name: Verify Tests Passed
54
if: ${{ success() }}
0 commit comments