Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions .azure-pipelines/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ steps:
path: $(Build.SourcesDirectory)/test_data
- script: |
pip install -U pip wheel setuptools virtualenv
pip install -r requirements/requirements_dev.txt
pip install -r requirements/requirements_dev.txt tox-uv
displayName: "Install deps"
- script: tox -e py311-PyQt5-azure
displayName: "Run Tox"
env:
CODECOV_TOKEN: $(codecov_token_secret)
PIP_CONSTRAINT: requirements/constraints_py3.9.txt
PIP_CONSTRAINT: requirements/constraints_py3.11.txt
UV_CONSTRAINT: requirements/constraints_py3.11.txt

- task: CopyFiles@2
inputs:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/base_test_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install -r requirements/requirements_dev.txt tox-gh-actions>=2.12.0 tox-min-req
python -m pip install -r requirements/requirements_dev.txt tox-gh-actions>=2.12.0 tox-min-req tox-uv
pip list

- name: Test with tox
Expand All @@ -95,6 +95,7 @@ jobs:
NAPARI: ${{ inputs.napari }}
BACKEND: ${{ inputs.qt_backend }}
PIP_CONSTRAINT: requirements/constraints_py${{ inputs.python_version }}${{ inputs.pydantic }}.txt
UV_CONSTRAINT: requirements/constraints_py${{ inputs.python_version }}${{ inputs.pydantic }}.txt

- uses: actions/upload-artifact@v4
with:
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ min_req_constraints=
setenv =
MINIMAL_REQUIREMENTS=1
PIP_CONSTRAINT=
UV_CONSTRAINT=
deps =
{[base]deps}
setuptools_scm[toml]>=3.4
Expand Down