Skip to content

Commit

Permalink
add mypy and ruff to dev-dependencies, sync docker dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatinem committed Nov 20, 2024
1 parent 707d492 commit 94535f7
Show file tree
Hide file tree
Showing 3 changed files with 206 additions and 188 deletions.
8 changes: 6 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ services:
command:
- sleep
- infinity

postgres:
image: postgres:14-alpine
environment:
Expand All @@ -30,8 +31,9 @@ services:
target: /var/lib/postgresql/data
tmpfs:
size: 2048M

timescale:
image: timescale/timescaledb-ha:pg14-latest
image: timescale/timescaledb:latest-pg14
environment:
- POSTGRES_USER=postgres
- POSTGRES_HOST_AUTH_METHOD=trust
Expand All @@ -41,7 +43,9 @@ services:
target: /var/lib/postgresql/data
tmpfs:
size: 2048M

redis:
image: redis:7-alpine
image: redis:6-alpine

mailhog:
image: mailhog/mailhog:latest
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,18 @@ dev-dependencies = [
"factory-boy>=3.3.1",
"freezegun>=1.5.1",
"mock>=5.1.0",
"mypy>=1.13.0",
"pre-commit>=4.0.1",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"pytest-celery>=1.1.3",
"pytest-cov>=6.0.0",
"pytest-django>=4.9.0",
"pytest-freezegun>=0.4.2",
"pytest-mock>=3.14.0",
"pytest-sqlalchemy>=0.2.1",
"pytest>=8.3.3",
"respx>=0.21.1",
"ruff>=0.7.4",
"sqlalchemy-utils>=0.41.2",
"time-machine>=2.16.0",
"vcrpy>=6.0.2",
Expand All @@ -64,4 +66,4 @@ dev-dependencies = [
[tool.uv.sources]
timestring = { git = "https://github.com/codecov/timestring", rev = "d37ceacc5954dff3b5bd2f887936a98a668dda42" }
test-results-parser = { git = "https://github.com/codecov/test-results-parser", rev = "94ff26cb083a02ff726dd2497c2129e4aaf5f7cd" }
shared = { git = "https://github.com/codecov/shared", rev = "9c31870de026a8a3f026f0753b1991e8c832fadb" }
shared = { git = "https://github.com/codecov/shared", rev = "511b553fd19113f1716326b0363b9d9a4afca1d7" }
Loading

0 comments on commit 94535f7

Please # to comment.