Skip to content

Commit 61e8a41

Browse files
committed
Fix pytest.skipif condition in installation test
Updated the `skipif` condition to always skip the test unless run explicitly. This ensures the installation test isn't executed unintentionally during standard test runs.
1 parent 055419d commit 61e8a41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_installation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22

33

4-
@pytest.mark.skipif("Run explicitly to test installation")
4+
@pytest.mark.skipif(True, "Run explicitly to test installation")
55
def test_pyvista():
66
import pyvista
77

0 commit comments

Comments
 (0)