Skip to content

Commit

Permalink
ci: fix pytest not found
Browse files Browse the repository at this point in the history
  • Loading branch information
waketzheng committed Jan 23, 2025
1 parent 346713f commit 3f970da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ jobs:
pip install -U pip
curl -sSL https://install.python-poetry.org | python - -y
- name: Update PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$(pwd)/.venv/bin" >> $GITHUB_PATH
- name: Configure poetry
run: poetry config virtualenvs.in-project true
- uses: actions/cache@v4
Expand Down

0 comments on commit 3f970da

Please sign in to comment.