Skip to content

Commit 7890c9d

Browse files
committed
test
1 parent c9268af commit 7890c9d

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Diff for: .github/workflows/test_and_deploy.yml

-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
python-version: ["3.9", "3.10", "3.11"]
3535
napari: ["latest", "repo"]
3636
exclude:
37-
# TODO: Remove when we have a napari release with the plugin manager changes
38-
- napari: "latest"
3937
# TODO: PyQt / PySide wheels missing
4038
- python-version: "3.11"
4139
platform: "windows-latest"

Diff for: napari_update_checker/_tests/test_utils.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import urllib.request
12
import sys
23
import tempfile
34
from pathlib import Path
@@ -30,7 +31,7 @@ def test_conda_forge_releases():
3031
pass
3132

3233

33-
def test_get_latest_version():
34+
def test_get_latest_version(monkeypatch):
3435
result = get_latest_version(github=None)
3536
assert list(result)
3637
result = get_latest_version(github=True)

Diff for: tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ NAPARI =
1717
repo: napari_repo
1818
BACKEND =
1919
pyqt: PyQt5
20-
pyside: PySide2
20+
# pyside: PySide2
2121
PyQt5: PyQt5
22-
PySide2: PySide2
22+
# PySide2: PySide2
2323
PyQt6: PyQt6
2424
PySide6: PySide6
2525

0 commit comments

Comments
 (0)