2024-06-15 10:29:19 +02:00
|
|
|
-e .
|
|
|
|
|
|
|
|
# required for building the wheels for releases
|
|
|
|
build
|
|
|
|
|
|
|
|
# For the test suite
|
2024-12-07 11:15:53 +01:00
|
|
|
pytest==8.3.4
|
2024-06-15 10:29:19 +02:00
|
|
|
|
|
|
|
# needed because pytest doesn't come with native support for coroutines as tests
|
|
|
|
pytest-asyncio==0.21.2
|
|
|
|
|
|
|
|
# xdist runs tests in parallel
|
|
|
|
pytest-xdist==3.6.1
|
|
|
|
|
|
|
|
# Used for flaky tests (flaky decorator)
|
2024-06-23 20:15:37 +02:00
|
|
|
flaky>=3.8.1
|
2024-06-15 10:29:19 +02:00
|
|
|
|
|
|
|
# used in test_official for parsing tg docs
|
2025-01-01 19:43:52 +01:00
|
|
|
beautifulsoup4
|
|
|
|
|
|
|
|
# For testing with timezones. Might not be needed on all systems, but to ensure that unit tests
|
|
|
|
# run correctly on all systems, we include it here.
|
|
|
|
tzdata
|