Skip to content

Commit

Permalink
[WIP] Started converting to pydantic 2
Browse files Browse the repository at this point in the history
  • Loading branch information
scnerd committed Nov 21, 2023
1 parent f51e6e7 commit 1a65d41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
python-version: [ '3.8', '3.9', '3.10' ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pendulum
pip install -r requirements.txt
- name: Test with pytest
run: |
Expand Down

3 comments on commit 1a65d41

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCover
TOTAL1550100%

Tests Skipped Failures Errors Time
21 0 💤 0 ❌ 0 🔥 1.299s ⏱️

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
data_dag
   dag_factory.py461078%69, 76–85, 89–93, 97
data_dag/operator_factory
   __init__.py4250%9–14
   base.py301067%21, 32, 36, 40–43, 56–59, 64
   dynamic.py372435%19–25, 29–95
   simple.py37370%1–110
TOTAL1558346% 

Tests Skipped Failures Errors Time
3 0 💤 0 ❌ 3 🔥 1.943s ⏱️

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCover
TOTAL1550100%

Tests Skipped Failures Errors Time
21 0 💤 0 ❌ 0 🔥 1.551s ⏱️

Please sign in to comment.