1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
# can be included into setup.cfg
[tox]
minversion = 3.8.0
isolated_build = true
envlist = py38,py39,py310,py311,py312
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
[testenv]
allowlist_externals = pdm
deps =
sse-starlette
pytest
pytest-asyncio
black
coverage
requests
httpx
asgi_lifespan
psutil
uvicorn
starlette
fastapi
commands =
#pytest --cov=sse_starlette --cov-report=xml
coverage erase
coverage run -m pytest -ra
coverage report -m
coverage xml
|