Skip to content

Commit

Permalink
fix import errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pnxenopoulos committed Jan 25, 2025
1 parent 0687143 commit 452bb0f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ jobs:
- name: Set up Python
run: uv python install ${{ matrix.python-version }}

- name: Install dependencies
- name: Install Python dependencies
run: uv sync --all-extras --dev

- name: Ruff
run: uv run ruff check --select I .

- name: Build Rust application
- name: Build
run: maturin develop --uv --release

- name: Pytest & Coverage
- name: Test
run: |
uv run pytest --durations=10
Expand Down
1 change: 0 additions & 1 deletion tests/test_book.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Test the litebook.book module."""

import pytest

from litebook import Order, OrderBook, OrderStatus, OrderType

from .utils import check_import
Expand Down
1 change: 0 additions & 1 deletion tests/test_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from datetime import datetime

import pytest

from litebook import Order, OrderStatus, OrderType

from .utils import check_import
Expand Down

0 comments on commit 452bb0f

Please sign in to comment.