Skip to content

Commit

Permalink
🔧 chore: remove unused pytest-asyncio dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
adriamontoto committed Dec 29, 2024
1 parent 580dbc8 commit bfa400f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ dynamic = ['version']
tests = [
'Faker>=28.0.0,<34.0.0',
'pytest>=8.0.0,<9.0.0',
'pytest-asyncio>=0.0.0,<1.0.0',
'pytest-randomly>=3.0.0,<4.0.0',
'coverage[toml]>=7.0.0,<8.0.0',
'ruff>=0.0.0,<1.0.0',
Expand Down Expand Up @@ -166,9 +165,9 @@ property-decorators = ['sqlalchemy.ext.hybrid.hybrid_property']

[tool.ruff.lint.pep8-naming]
classmethod-decorators = [
'declared_attr', # Allow SQLAlchemy's dynamic decorators, like @field.expression, to trigger class method treatment.
'expression', # Allow SQLAlchemy's dynamic decorators, like @field.expression, to trigger class method treatment.
'comparator', # Allow SQLAlchemy's dynamic decorators, like @field.expression, to trigger class method treatment.
'declared_attr', # Allow SQLAlchemy's dynamic decorators, like @field.expression, to trigger class method treatment.
'expression', # Allow SQLAlchemy's dynamic decorators, like @field.expression, to trigger class method treatment.
'comparator', # Allow SQLAlchemy's dynamic decorators, like @field.expression, to trigger class method treatment.
]

[tool.ruff.lint.isort]
Expand Down

0 comments on commit bfa400f

Please sign in to comment.