Skip to content

Commit

Permalink
test: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
klen committed Jul 31, 2024
1 parent 0c7462c commit b6a4ba5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ VIRTUAL_ENV ?= .venv
# =============

$(VIRTUAL_ENV): poetry.lock .pre-commit-config.yaml
@[ -d $(VIRTUAL_ENV) ] || python -m venv $(VIRTUAL_ENV)
@poetry install --with tests,dev,example --extras yaml
@poetry self add poetry-bumpversion
@poetry run pre-commit install
Expand Down
21 changes: 10 additions & 11 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pyyaml = { version = "*", optional = true }
muffin-peewee-aio = { version = "^0", optional = true }
marshmallow-peewee = { version = "^4", optional = true }
muffin-databases = { version = "^0.5.0", optional = true }
marshmallow-sqlalchemy = { version = "^0", optional = true }
marshmallow-sqlalchemy = { version = "*", optional = true }
sqlalchemy = { version = "*", optional = true }

[tool.poetry.extras]
Expand All @@ -45,7 +45,7 @@ sqlalchemy = ["muffin-databases", "marshmallow-sqlalchemy", "sqlalchemy"]
[tool.poetry.group.tests.dependencies]
aiosqlite = "*"
marshmallow-peewee = "^4.0.3"
marshmallow-sqlalchemy = "^0.27.0"
marshmallow-sqlalchemy = "*"
muffin-databases = "^0.5.0"
muffin-mongo = "^0.5.1"
muffin-peewee-aio = "*"
Expand Down

0 comments on commit b6a4ba5

Please sign in to comment.