mirror of
https://github.com/mozilla-services/syncstorage-rs.git
synced 2026-03-29 01:02:20 +01:00
Some checks failed
Checks / python-checks (push) Has been cancelled
Checks / rust-checks (push) Has been cancelled
Glean probe-scraper / glean-probe-scraper (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / check (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncstorage-rs (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncserver-postgres (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncserver-postgres-enterprise-gar (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncstorage-rs-spanner-python-utils (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncserver-postgres-python-utils (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncserver-postgres-python-utils-enterprise-gar (push) Has been cancelled
Build, Tag and Push Container Images to GAR Repository / build-and-push-syncserver-mysql (push) Has been cancelled
MySQL Build and Test / build-and-test-mysql (push) Has been cancelled
MySQL Build and Test / build-mysql-image (push) Has been cancelled
MySQL Build and Test / mysql-e2e-tests (push) Has been cancelled
Postgres Build and Test / build-and-test-postgres (push) Has been cancelled
Postgres Build and Test / build-postgres-image (push) Has been cancelled
Postgres Build and Test / postgres-e2e-tests (push) Has been cancelled
Publish Sync docs to pages / build-mdbook (push) Has been cancelled
Publish Sync docs to pages / build-openapi (push) Has been cancelled
Publish Sync docs to pages / combine-and-prepare (push) Has been cancelled
Publish Sync docs to pages / deploy (push) Has been cancelled
Spanner Build, Test, and Push / build-and-test-spanner (push) Has been cancelled
Spanner Build, Test, and Push / build-spanner-image (push) Has been cancelled
Spanner Build, Test, and Push / spanner-e2e-tests (push) Has been cancelled
chore: upgrade Python for all utils and refactor
52 lines
1.0 KiB
TOML
52 lines
1.0 KiB
TOML
[tool.poetry]
|
|
package-mode = false
|
|
|
|
[project]
|
|
name = "syncstorage-loadtest"
|
|
version = "0.1.0"
|
|
description = "Molotov-based load tester for syncstorage-rs"
|
|
authors = [
|
|
{name = "Mozilla Sync Backend Engineering", email = "sync-backend@mozilla.com"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10,<4.0"
|
|
dependencies = [
|
|
"molotov>=2.6",
|
|
"pexpect>=4.9.0,<5.0.0",
|
|
"configparser>=7.2.0,<8.0.0",
|
|
"hawkauthlib>=2.0.0,<3.0.0",
|
|
"tokenlib>=2.0.0",
|
|
"aiodogstatsd>=0.16.0,<0.17.0",
|
|
"PyFxA>=0.7.0",
|
|
"PyJWT>=2.0.0",
|
|
"cryptography>=46.0.5",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"mypy>=1.16.0",
|
|
"pydocstyle>=6.3.0",
|
|
"ruff>=0.15.6",
|
|
"black>=26.3.0",
|
|
"bandit>=1.9.4",
|
|
"isort>=8.0.1",
|
|
]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = false
|
|
ignore_missing_imports = false
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = [
|
|
"fxa.*",
|
|
"molotov.*",
|
|
"tokenlib.*"
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|