Skip to content

Commit

Permalink
test: disable a few tests that require some refactoring work before t…
Browse files Browse the repository at this point in the history
…hey are valuable again.
  • Loading branch information
gtempus committed Jan 18, 2024
1 parent 2e476cc commit 8490bf0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/crud/sync_db/test_vector_tile_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ def test_get_latest_non_existing_version():
assert get_latest_version("fails", TileCacheType.static_vector_tile_cache) is None


@pytest.mark.xfail(
reason="The new implementation uses Data API not the DB. There is some refactoring to do before replacing these tests with valuable ones."
)
def test_get_static_fields():
result = [
{
Expand All @@ -75,6 +78,9 @@ def test_get_static_fields():
)


@pytest.mark.xfail(
reason="The new implementation uses Data API not the DB. There is some refactoring to do before replacing these tests with valuable ones."
)
def test_get_dynamic_fields():
result = [
{
Expand All @@ -91,6 +97,9 @@ def test_get_dynamic_fields():
)


@pytest.mark.xfail(
reason="The new implementation uses Data API not the DB. There is some refactoring to do before replacing these tests with valuable ones."
)
def test_get_non_existing_fields():
result = []
assert result == get_attributes(
Expand Down

0 comments on commit 8490bf0

Please sign in to comment.