Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
zschumacher committed Jan 31, 2025
1 parent bc5d3d2 commit 66b9b1e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/test_pinot/test_pinotdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def test_using():
with using(pinotdb.connect(host="localhost", port=8099)) as commands:
assert isinstance(commands, PinotDbCommands)


@pytest.mark.vcr
class TestQuery(QueryTestSuite):

Expand All @@ -64,21 +65,27 @@ def test_param(self, commands, task_table_name):
assert len(data) == 2
assert all(isinstance(record, dict) for record in data)


@pytest.mark.vcr
class TestQueryFirst(QueryFirstTestSuite): ...


@pytest.mark.vcr
class TestQueryFirstOrDefault(QueryFirstOrDefaultTestSuite): ...


@pytest.mark.vcr
class TestQuerySingleOrDefault(QuerySingleOrDefaultTestSuite): ...


@pytest.mark.vcr
class TestQuerySingle(QuerySingleTestSuite): ...


@pytest.mark.vcr
class TestExecuteScalar(ExecuteScalarTestSuite): ...


@pytest.mark.vcr
class TestQueryMultiple(QueryMultipleTestSuite):

Expand Down

0 comments on commit 66b9b1e

Please sign in to comment.