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.
1 parent 9e2a023 commit 5e02acdCopy full SHA for 5e02acd
.github/workflows/python-workflow.yml
@@ -72,14 +72,16 @@ jobs:
72
runs-on: ubuntu-latest
73
needs: upload-test-pypi
74
steps:
75
+ - name: Checkout
76
+ uses: actions/checkout@v4
77
- name: Set up Python ${{ env.PRIMARY_PYTHON_VERSION }}
78
uses: actions/setup-python@v3
79
with:
80
python-version: ${{ env.PRIMARY_PYTHON_VERSION }}
81
- name: Install dependencies
82
run: |
83
python -m pip install --upgrade pip
- pip install pytest ${{ env.PYPI_PACKAGE_NAME }} --extra-index-url https://test.pypi.org/simple/
84
+ pip install "${{ env.PYPI_PACKAGE_NAME }}[dev]" --extra-index-url https://test.pypi.org/simple/
85
- name: Test with pytest
86
87
pytest
0 commit comments