Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,21 @@ jobs:
- name: Install poetry
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: false # Currently there seems to be some race-condition in windows
installer-parallel: false
env:
# Add this to bypass potential keyring issues
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring

- name: Verify Poetry installation
run: |
# Verify Python and Poetry installation
python --version
poetry --version
which poetry
poetry env info

- name: Install library (Windows)
if: runner.os == 'Windows'
Expand Down
Loading