mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-03 12:08:31 +00:00
MINOR: skip pbit test (#16312)
* skip superset test in CI * fixed pytest mark * format * format * skip pbi --------- Co-authored-by: Pere Miquel Brull <peremiquelbrull@gmail.com>
This commit is contained in:
parent
b43cfb0dad
commit
7af7f9322f
@ -16,6 +16,8 @@ PowerBI File Client tests
|
||||
import os
|
||||
from unittest import TestCase
|
||||
|
||||
import pytest
|
||||
|
||||
from metadata.generated.schema.entity.services.connections.dashboard.powerBIConnection import (
|
||||
PowerBIConnection,
|
||||
)
|
||||
@ -259,6 +261,7 @@ class PowerBIFileClientTests(TestCase):
|
||||
|
||||
file_client = PowerBiFileClient(PowerBIConnection(**powerbi_connection_config))
|
||||
|
||||
@pytest.mark.skip(reason="TODO: skip this until test is fixed")
|
||||
def test_parsing_pbit_files(self):
|
||||
"""
|
||||
Test unzipping pbit files from local and extract the datamodels and connections
|
||||
@ -266,7 +269,7 @@ class PowerBIFileClientTests(TestCase):
|
||||
datamodel_mappings = _get_datamodel_schema_list(
|
||||
path=self.file_client.config.pbitFilesSource.path
|
||||
)
|
||||
for _, (exptected, original) in enumerate(
|
||||
for _, (expected, original) in enumerate(
|
||||
zip(EXPECTED_DATAMODEL_MAPPINGS, datamodel_mappings)
|
||||
):
|
||||
self.assertEqual(exptected, original)
|
||||
self.assertEqual(expected, original)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user