Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
paulboosz committed Sep 19, 2024
1 parent a2be5c8 commit 0507103
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,29 @@ jobs:
pip install pipenv
pipenv --version
- name: Debug virtual environment
- name: Check Pipfile and Pipfile.lock
run: |
pipenv --venv
pipenv run which python
pipenv run python --version
cat Pipfile
echo "---"
cat Pipfile.lock
- name: Install dependencies
run: pipenv install -d
- name: Check project structure
run: |
pwd
ls -R
- name: Run tests
run: pipenv run python -m pytest
- name: Install dependencies
run: |
pipenv --python 3.12
pipenv install -d -v
- name: Debug environment
if: failure()
if: always()
run: |
env
pipenv --where
pipenv --venv
ls -la $(pipenv --venv)
ls -la $(pipenv --venv)/bin
pipenv --venv || echo "No virtualenv found"
pipenv graph
- name: Run tests
run: pipenv run python -m pytest

0 comments on commit 0507103

Please sign in to comment.