Skip to content

Commit

Permalink
Fix import syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
pdelboca committed Aug 23, 2024
1 parent 101eb2d commit 80995c4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frictionless/indexer/__spec__/test_resource.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import pytest
from pytest_lazyfixture import lazy_fixture
from pytest_lazy_fixtures import lf

from frictionless import formats, platform
from frictionless.resources import TableResource

control = formats.sql.SqlControl(table="table")
fast_database_urls = [
lazy_fixture("sqlite_url"),
lazy_fixture("postgresql_url"),
lf("sqlite_url"),
lf("postgresql_url"),
]
database_urls = fast_database_urls + [
lazy_fixture("mysql_url"),
lf("mysql_url"),
]
if platform.type != "windows":
database_urls += [
lazy_fixture("duckdb_url"),
lf("duckdb_url"),
]
pytestmark = pytest.mark.skipif(
platform.type == "darwin" or platform.type == "windows",
Expand Down

0 comments on commit 80995c4

Please sign in to comment.