Files
ccxt_with_mt5/tox.ini
lz_db 0fab423a18 add
2025-11-16 12:31:03 +08:00

36 lines
657 B
INI

[tox]
envlist = py{37,38,39,310,311}
skipsdist = True
skip_missing_interpreters = False
ignore_basepython_conflict = True
[testenv]
basepython = python3
sitepackages = True
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}
deps =
pip
setuptools
wheel
aiohttp
cryptography
requests
coincurve
commands =
pip install -e .
python ccxt/test/tests_init.py --idTests
python ccxt/test/tests_init.py --sync --idTests
[testenv:qa]
allowlist_externals = ruff
changedir = {toxinidir}
commands = ruff ./ccxt/
deps = .[qa]
[testenv:type]
allowlist_externals = mypy
changedir = {toxinidir}
commands = mypy ./ccxt/
deps = .[type]