mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
We can avoid specifying versions here, but ... 1. It won't be possible to run tests locally without checking what versions are supported (going to TeamCity config) 2. It won't be possible to specify dependencies for each Python version separately when it is required (not yet, but will be soon) Hardcoding Python versions in two places for `pydevd` tests looks ugly, but at the moment I have no better ideas. Will investigate as a separate task in PCQA-447 (cherry picked from commit cc9e50cd7a742b8265497cdc56a49a6be0db38a8) IJ-MR-138586 GitOrigin-RevId: 717d434d6fd72a6cb6ac0a361917ad22e8e62687
32 lines
444 B
INI
32 lines
444 B
INI
[tox]
|
|
envlist =
|
|
py2.7.18
|
|
py3.8.19
|
|
py3.9.19
|
|
py3.10.14
|
|
py3.11.9
|
|
py3.12.4
|
|
py3.13.0b3
|
|
skipsdist=True
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
teamcity-messages
|
|
ipython
|
|
django
|
|
behave
|
|
jinja2
|
|
nose
|
|
pytest
|
|
django-nose
|
|
behave-django
|
|
pytest-xdist
|
|
untangle
|
|
pandas
|
|
PySide2
|
|
py
|
|
commands =
|
|
pytest -s
|
|
setenv = PYTHONPATH = {toxinidir}/../third_party/thriftpy
|
|
passenv = TEAMCITY_VERSION |