Skip to content

Commit 6eb6895

Browse files
committed
Updated pre-commit, migrations moved into app
1 parent fbe4b4a commit 6eb6895

8 files changed

+149
-152
lines changed

.pre-commit-config.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ repos:
1111
rev: 5.10.1
1212
hooks:
1313
- id: isort
14-
name: isort (python)
15-
args:
16-
- '--profile'
17-
- black
1814
- repo: https://github.com/psf/black
1915
rev: 22.3.0
2016
hooks:

alembic.ini app/alembic.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
[alembic]
44
# path to migration scripts
5-
script_location = migrations
5+
script_location = app/migrations
66

77
# template used to generate migration files
88
# file_template = %%(rev)s_%%(slug)s
99

1010
# sys.path path, will be prepended to sys.path if present.
1111
# defaults to the current working directory.
12-
prepend_sys_path = .
12+
# prepend_sys_path = .
1313

1414
# timezone to use when rendering the date within the migration file
1515
# as well as the filename.

app/bin.py

+11-14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
from subprocess import call
44

55
import click
6+
from alembic.command import revision, upgrade
7+
from alembic.config import Config
8+
9+
ini_path = str(pathlib.Path(__file__).parent / "alembic.ini")
10+
config = Config(ini_path)
611

712
# TODO: move all calls to docker into some contextmanager
813
# or find proper lib to up and down containers
@@ -14,17 +19,7 @@ def makemigration(description):
1419
call(["docker-compose", "up", "-d"])
1520
time.sleep(5)
1621
try:
17-
call(
18-
[
19-
"poetry",
20-
"run",
21-
"alembic",
22-
"revision",
23-
"--autogenerate",
24-
"-m",
25-
str(description),
26-
]
27-
)
22+
revision(config, description, True)
2823
call(["poetry", "run", "pre-commit", "run", "-a"])
2924
finally:
3025
call(["docker-compose", "down"])
@@ -33,13 +28,15 @@ def makemigration(description):
3328
@click.command()
3429
@click.pass_context
3530
def recreatemigrations(ctx):
36-
py_files = list(pathlib.Path("migrations/versions").glob("*.py"))
31+
py_files = list(
32+
(pathlib.Path(__file__).parent / "migrations/versions").glob("*.py")
33+
)
3734
if len(py_files) > 1:
3835
click.echo(
3936
"You can't recreate initial migration because "
4037
"you have forward migrations"
4138
)
42-
for py_file in pathlib.Path("migrations/versions").glob("*.py"):
39+
for py_file in py_files:
4340
py_file.unlink()
4441
ctx.forward(makemigration, description="Initial migration")
4542

@@ -48,7 +45,7 @@ def recreatemigrations(ctx):
4845
@click.argument("revision", required=False)
4946
def migrate(revision):
5047
revision = revision or "heads"
51-
call(["poetry", "run", "alembic", "upgrade", str(revision)])
48+
upgrade(config, revision)
5249

5350

5451
@click.command()
File renamed without changes.

migrations/script.py.mako app/migrations/script.py.mako

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Revision ID: ${up_revision}
44
Revises: ${down_revision | comma,n}
5-
Create Date: ${create_date}
5+
Created Date: ${create_date}
66

77
"""
88
from alembic import op

migrations/versions/0001_initial_migration.py app/migrations/versions/0001_initial_migration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Revision ID: 0001
44
Revises:
5-
Create Date: 2022-02-13 00:59:50.983274
5+
Created Date: 2022-05-08 13:30:37.164512
66
77
"""
88
import sqlalchemy as sa

poetry.lock

+130-130
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+4
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,7 @@ exclude = '''
5555
| \dist
5656
)/
5757
'''
58+
59+
[tool.isort]
60+
profile = "black"
61+
line_length = 79

0 commit comments

Comments
 (0)