File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed
Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 2121 pip install -r requirements.txt
2222 pip install -r tests/test-requirements.txt
2323 - name : Mypy
24- run : mypy piccolo
24+ run : mypy piccolo tests
2525 - name : Flake8
26- run : flake8 piccolo
26+ run : flake8 piccolo tests
2727
2828 postgres :
2929 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 22from piccolo .columns .column_types import ForeignKey
33from unittest .mock import patch , MagicMock
44
5- from asyncpg .exceptions import UniqueViolationError
5+ from asyncpg .exceptions import UniqueViolationError # type: ignore
66from piccolo .apps .migrations .auto import MigrationManager
77from piccolo .apps .migrations .commands .base import BaseMigrationManager
88from piccolo .columns import Varchar , Text
Original file line number Diff line number Diff line change 66
77
88APP_REGISTRY = AppRegistry (apps = ["tests.example_app.piccolo_app" ])
9-
Original file line number Diff line number Diff line change 1- from unittest .case import TestCase
21from ..base import DBTestCase
32from ..example_app .tables import Band , Manager
43
You can’t perform that action at this time.
0 commit comments