Skip to content

Commit bd8e136

Browse files
Remove rhino skips from tests
1 parent d1db925 commit bd8e136

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tests/geometry/test_geometry.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from __future__ import annotations
44

55
import json
6-
import sys
76
from pathlib import Path
87

98
import pytest
@@ -480,7 +479,6 @@ def test_geometry_from_dxf():
480479
assert sp_geom.Geometry.from_dxf(section_holes_dxf).geom.wkt == poly
481480

482481

483-
@pytest.mark.skipif(sys.version_info >= (3, 10), reason="requires python 3.9")
484482
def test_geometry_from_3dm_file_simple():
485483
"""Tests loading geometry from a simple .3dm file."""
486484
section = Path(__file__).parent.absolute() / "3in x 2in.3dm"
@@ -489,7 +487,6 @@ def test_geometry_from_3dm_file_simple():
489487
assert (test.geom - exp).is_empty
490488

491489

492-
@pytest.mark.skipif(sys.version_info >= (3, 10), reason="requires python 3.9")
493490
def test_geometry_from_3dm_file_complex():
494491
"""Tests loading geometry from a complex .3dm file."""
495492
section_3dm = Path(__file__).parent.absolute() / "complex_shape.3dm"
@@ -501,7 +498,6 @@ def test_geometry_from_3dm_file_complex():
501498
assert (test.geom - exp).is_empty
502499

503500

504-
@pytest.mark.skipif(sys.version_info >= (3, 10), reason="requires python 3.9")
505501
def test_geometry_from_3dm_file_compound():
506502
"""Tests loading compound geometry from a .3dm file."""
507503
section_3dm = Path(__file__).parent.absolute() / "compound_shape.3dm"
@@ -513,7 +509,6 @@ def test_geometry_from_3dm_file_compound():
513509
assert (MultiPolygon([ii.geom for ii in test.geoms]) - MultiPolygon(exp)).is_empty
514510

515511

516-
@pytest.mark.skipif(sys.version_info >= (3, 10), reason="requires python 3.9")
517512
def test_geometry_from_3dm_encode():
518513
"""Tests loading compound geometry from a .json file."""
519514
section_3dm = Path(__file__).parent.absolute() / "rhino_data.json"

0 commit comments

Comments
 (0)