Skip to content

Commit ace6d88

Browse files
committed
remove mysql connector and name
1 parent e079d88 commit ace6d88

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

src/flaskapp/database/models.py

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Models for MySQL
2+
Models for SQLite database
33
44
"""
55

@@ -58,7 +58,9 @@ class TestCase(db.Model):
5858
id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
5959
name: Mapped[str] = mapped_column(String(255), nullable=False)
6060
description: Mapped[str] = mapped_column(String(500), nullable=True)
61-
executions: Mapped[list["Execution"]] = relationship("Execution", back_populates="test_case")
61+
executions: Mapped[list["Execution"]] = relationship(
62+
"Execution", back_populates="test_case"
63+
)
6264

6365
def __init__(self, name, description):
6466
self.name = name
@@ -84,7 +86,9 @@ class Asset(db.Model):
8486

8587
id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
8688
name: Mapped[str] = mapped_column(String(255), nullable=False)
87-
executions: Mapped[list["Execution"]] = relationship("Execution", back_populates="asset")
89+
executions: Mapped[list["Execution"]] = relationship(
90+
"Execution", back_populates="asset"
91+
)
8892

8993
def __init__(self, name):
9094
self.name = name
@@ -109,7 +113,9 @@ class Execution(db.Model):
109113

110114
id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
111115
test_case_id: Mapped[int] = mapped_column(ForeignKey("test_case.id"))
112-
test_case: Mapped["TestCase"] = relationship("TestCase", back_populates="executions")
116+
test_case: Mapped["TestCase"] = relationship(
117+
"TestCase", back_populates="executions"
118+
)
113119
asset_id: Mapped[int] = mapped_column(ForeignKey("asset.id"))
114120
asset: Mapped["Asset"] = relationship("Asset", back_populates="executions")
115121
timestamp: Mapped[datetime] = mapped_column(DateTime, default=datetime.utcnow)

src/pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ dependencies = [
77
"sqlalchemy",
88
"flask-migrate",
99
"flask-sqlalchemy",
10-
"mysql-connector-python",
1110
"gunicorn"
1211
]
1312

1413
[build-system]
1514
requires = ["flit_core<4"]
16-
build-backend = "flit_core.buildapi"
15+
build-backend = "flit_core.buildapi"

src/requirements.txt

-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ markupsafe==2.1.5
3636
# jinja2
3737
# mako
3838
# werkzeug
39-
mysql-connector-python==8.3.0
40-
# via flaskapp (pyproject.toml)
4139
sqlalchemy==2.0.28
4240
# via
4341
# alembic

0 commit comments

Comments
 (0)