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 3154612 commit 13f92b8Copy full SHA for 13f92b8
subprojects/robotpy-wpimath/tests/geometry/test_rotation2d.py
@@ -73,7 +73,9 @@ def test_inequality() -> None:
73
assert rot1 != rot2
74
75
76
-@pytest.mark.skipif(importlib.util.find_spec("numpy") is None)
+@pytest.mark.skipif(
77
+ importlib.util.find_spec("numpy") is None, reason="numpy is not available"
78
+)
79
def test_to_matrix() -> None:
80
before = Rotation2d.fromDegrees(20.0)
81
after = Rotation2d.fromMatrix(before.toMatrix())
0 commit comments