Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhealy1 committed Nov 17, 2023
1 parent 71aae3e commit aac261c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions tests/test_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
"""

import pytest

from stac_validator import stac_validator


Expand All @@ -22,6 +24,7 @@ def test_default_v070():
]


@pytest.mark.skip(reason="staclint eo extension schema invalid")
def test_default_item_local_v080():
stac_file = "tests/test_data/v080/items/sample-full.json"
stac = stac_validator.StacValidate(stac_file)
Expand Down
3 changes: 3 additions & 0 deletions tests/test_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
"""

import pytest

from stac_validator import stac_validator


@pytest.mark.skip(reason="staclint eo extension schema invalid")
def test_item_local_v080():
stac_file = "tests/test_data/v080/items/sample-full.json"
stac = stac_validator.StacValidate(stac_file, extensions=True)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ def test_item_v100():
"http://remotedata.io/catalog/20201211_223832_CS2/index.html",
],
"format_invalid": [],
"request_valid": [
"request_valid": [],
"request_invalid": [
"http://remotedata.io/collection.json",
"http://remotedata.io/collection.json",
"http://remotedata.io/collection.json",
"http://remotedata.io/catalog/20201211_223832_CS2/index.html",
],
"request_invalid": [],
},
}
]

0 comments on commit aac261c

Please sign in to comment.