123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- [build-system]
- requires = ["setuptools>=40.2.0,<64.0.0", "wheel"]
- build-backend = "setuptools.build_meta"
- [tool.black]
- line-length=100
- target-version=['py38']
- [tool.isort]
- profile = "black"
- line_length = 100
- lines_between_sections = 1
- known_first_party = "sentry"
- skip = "migrations"
- [tool.pytest.ini_options]
- addopts = "-ra --tb=short --strict-markers -p no:celery"
- markers = [
- "snuba: mark a test as requiring snuba",
- "itunes: test requires iTunes interaction, skipped unless --itunes is provided",
- "getsentryllc: test requires credentials for the GetSentry LLC organisation in Apple App Store Connect",
- "sentry_metrics: test requires access to sentry metrics",
- "broken_under_tags_values_as_strings: tests that currently fail if tags values are strings in clickhouse. this is mainly because they are not going to the right dataset",
- ]
- selenium_driver = "chrome"
- filterwarnings = [
-
- "error",
- "ignore::django.utils.deprecation.RemovedInDjango30Warning",
-
-
-
- "ignore:The `channel` argument is deprecated; use `transport` instead.:PendingDeprecationWarning:google.cloud.bigtable*",
-
-
-
- "ignore:DateTimeField.*naive datetime:RuntimeWarning",
- "ignore:.*sentry.digests.backends.dummy.DummyBackend.*:sentry.utils.warnings.UnsupportedBackend",
- ]
- looponfailroots = ["src", "tests"]
|