Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

General fixes #316

Merged
merged 2 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ target/
.python-version
coverage.*
example.sqlite
docker-compose.override.yml
compose.override.yml
59 changes: 0 additions & 59 deletions compose.overrides.yml

This file was deleted.

8 changes: 0 additions & 8 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,6 @@ services:
ports:
- "5432:5432"

redis:
restart: always
image: redis:latest
ports:
- "6379:6379"
expose:
- "6379"

mongodb:
restart: always
image: mongo:latest
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ dependencies = [
build = "mkdocs build"
serve = "mkdocs serve --dev-addr localhost:8000"


[tool.hatch.envs.test]
dependencies = [
"pytest>=7.1.3,<9.0.0",
Expand Down Expand Up @@ -167,7 +166,6 @@ dependencies = [

]
[tool.hatch.envs.test.scripts]

# needs docker services running
test = "ESMERALD_SETTINGS_MODULE='tests.settings.TestSettings' pytest {args}"
coverage = "ESMERALD_SETTINGS_MODULE='tests.settings.TestSettings' pytest --cov=asyncz --cov=tests --cov-report=term-missing:skip-covered --cov-report=html tests {args}"
Expand Down
Loading