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 4c31b3f commit 3dd8e82Copy full SHA for 3dd8e82
tests/test_unit/test_napari_plugin/test_data_loader_widget.py
@@ -27,6 +27,10 @@
27
28
from movement.napari.loader_widgets import DataLoader
29
30
+pytestmark = pytest.mark.filterwarnings(
31
+ "ignore:.*Previous color_by key.*:UserWarning"
32
+)
33
+
34
35
# ------------------- tests for widget instantiation--------------------------#
36
def test_data_loader_widget_instantiation(make_napari_viewer_proxy):
@@ -577,6 +581,9 @@ def test_deletion_all_layers(make_napari_viewer_proxy):
577
581
578
582
579
583
# ------------------- tests for layers style ----------------------------#
584
+@pytest.mark.filterwarnings(
585
+ "ignore:.*Private attribute access.*:FutureWarning"
586
580
587
@pytest.mark.parametrize(
588
(
589
"filename, source_software, "
0 commit comments