From ab5e795b2070ff6a3b9f18fd85206e9eecef6112 Mon Sep 17 00:00:00 2001 From: Peter Sobolewski <76622105+psobolewskiPhD@users.noreply.github.com> Date: Thu, 5 Sep 2024 12:30:43 -0400 Subject: [PATCH] [Maint] Update tox.ini to use proper testenv reps (#230) napari dropped pytest-cov so using `napari[testing]` doesn't provide it, resulting in failed tests: https://github.com/napari/napari-animation/actions/runs/10723680922/job/29737511848?pr=229#step:8:115 This should fix it by using the napari-animation [testenv] deps for all tests. --- tox.ini | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 1054476..8f582ec 100644 --- a/tox.ini +++ b/tox.ini @@ -38,14 +38,16 @@ commands = pytest -v --color=yes --cov=napari_animation --cov-report=xml [testenv:py{39,310,311,312}-{linux,macos,windows}-pyqt] deps = - napari[pyqt5,testing] + {[testenv]deps} + napari[pyqt5] lxml_html_clean # should only be needed till napari 0.5.0 # . # napari-animation install from source # PySide2 unavailable on Mac apple silicon arm64, and for python >=3.11 [testenv:py{39,310}-{linux,macosintel,windows}-pyside] deps = - napari[pyside2,testing] + {[testenv]deps} + napari[pyside2] lxml_html_clean # should only be needed till napari 0.5.0 # . # napari-animation install from source