Skip to content

Commit bb9852f

Browse files
Feat: Run unit tests in CI on pull request
- also includes the integration mark for test_table_can_default_to_large_types
1 parent 5cce906 commit bb9852f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/python-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,5 @@ jobs:
5151
run: make lint
5252
- name: Tests
5353
run: make test-coverage
54+
- name: Run Unit Tests
55+
run: make test

tests/integration/test_reads.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ def test_configure_row_group_batch_size(session_catalog: Catalog) -> None:
752752
batches = list(tbl.scan().to_arrow_batch_reader())
753753
assert len(batches) == entries
754754

755-
755+
@pytest.mark.integration
756756
@pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")])
757757
def test_table_scan_default_to_large_types(catalog: Catalog) -> None:
758758
identifier = "default.test_table_scan_default_to_large_types"

0 commit comments

Comments
 (0)