Skip to content

Commit

Permalink
Continue replacement of TableMeta with ColumnSchema and Logical Types (
Browse files Browse the repository at this point in the history
…#85)

* WIP

* finished test pp

* wip

* fix sample

* fix sample

* cleanup examples

* changelog

* speed up int tests
  • Loading branch information
gsheni authored Jul 4, 2023
1 parent ff2f3ee commit d9c37d9
Show file tree
Hide file tree
Showing 26 changed files with 690 additions and 24,868 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ on:
- main
workflow_dispatch:
jobs:
unit_tests:
name: ${{ matrix.python_version }} unit tests ${{ matrix.type_of_tests }}
tests:
name: ${{ matrix.python_version }} ${{ matrix.type_of_tests }} tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.11"]
type_of_tests: ["unit tests", "integration tests"]
type_of_tests: ["unit", "integration"]
exclude:
- python-version: "3.8"
type_of_tests: "integration tests"
type_of_tests: "integration"
steps:
- uses: actions/checkout@v3
- name: Set up python ${{ matrix.python-version }}
Expand All @@ -40,6 +40,7 @@ jobs:
if: (steps.cache.outputs.cache-hit == 'true') && ( github.event.pull_request.title != 'Automated Latest Dependency Updates')
run: python -m pip install --no-dependencies .
- name: Run unit tests
if: ${{ matrix.type_of_tests != 'integration tests' }}
run: make unit-tests
- name: Run integration tests
if: ${{ matrix.type_of_tests == 'integration tests' }}
Expand Down
Loading

0 comments on commit d9c37d9

Please sign in to comment.