File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 4545 if : runner.os == 'Windows'
4646 shell : bash
4747 env :
48- TMPDIR : ' D :\\a\\_temp'
48+ TMPDIR : ' C :\\a\\_temp'
4949 run : uv run pytest tests
5050 - name : Test
5151 if : runner.os != 'Windows'
Original file line number Diff line number Diff line change 88 media type value for these types and new media types COPC and VND_PMTILES
99 ([ #1554 ] ( https://github.com/stac-utils/pystac/pull/1554 ) )
1010
11+ ### Changed
12+
13+ - Update drive used by windows runners during tests
14+
1115### Fixed
1216
1317- More permissive collection extent deserialization ([ #1559 ] ( https://github.com/stac-utils/pystac/pull/1559 ) )
Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ class TestAsIsLayoutStrategy:
405405 def test_catalog (self ) -> None :
406406 strategy = AsIsLayoutStrategy ()
407407 expected_local_href = (
408- "/an/href" if not path_includes_drive_letter () else "D :/an/href"
408+ "/an/href" if not path_includes_drive_letter () else "C :/an/href"
409409 )
410410 cat = pystac .Catalog (id = "test" , description = "test desc" )
411411 with pytest .raises (ValueError ):
@@ -417,7 +417,7 @@ def test_catalog(self) -> None:
417417 def test_collection (self ) -> None :
418418 strategy = AsIsLayoutStrategy ()
419419 expected_local_href = (
420- "/an/href" if not path_includes_drive_letter () else "D :/an/href"
420+ "/an/href" if not path_includes_drive_letter () else "C :/an/href"
421421 )
422422 collection = TestCases .case_8 ()
423423 collection .set_self_href (None )
@@ -432,7 +432,7 @@ def test_collection(self) -> None:
432432 def test_item (self ) -> None :
433433 strategy = AsIsLayoutStrategy ()
434434 expected_local_href = (
435- "/an/href" if not path_includes_drive_letter () else "D :/an/href"
435+ "/an/href" if not path_includes_drive_letter () else "C :/an/href"
436436 )
437437 collection = TestCases .case_8 ()
438438 item = next (collection .get_items (recursive = True ))
You can’t perform that action at this time.
0 commit comments