mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
Merge-request: IJ-MR-149769 Merged-by: Egor Eliseev <Egor.Eliseev@jetbrains.com> (cherry picked from commit c517d3b49a16889c80ecf3e6f46e35380a9e8277) IJ-MR-149769 GitOrigin-RevId: b5ccbefc1fba7708b9a2e8b59db3c23c69c96e72
60 lines
1.2 KiB
INI
60 lines
1.2 KiB
INI
[tox]
|
|
envlist = python2.7, python3.8, python3.12, no_pandas_python2.7, no_pandas_python3.8, no_pandas_python3.12
|
|
isolated_build = True
|
|
skipsdist = True
|
|
|
|
[testenv:python2.7]
|
|
deps =
|
|
pytest
|
|
teamcity-messages
|
|
ipython
|
|
numpy
|
|
pandas
|
|
commands = pytest -s test_pydev_pandas.py test_ds_sorting_commands/test_pandas_internal_pydev.py
|
|
|
|
[testenv:python3.8]
|
|
deps =
|
|
pytest
|
|
teamcity-messages
|
|
ipython
|
|
numpy
|
|
pandas
|
|
polars
|
|
commands = pytest -s test_pydev_pandas.py test_ds_sorting_commands/test_pandas_internal_pydev.py
|
|
|
|
[testenv:python3.12]
|
|
deps =
|
|
pytest
|
|
teamcity-messages
|
|
ipython
|
|
numpy
|
|
pandas
|
|
polars
|
|
commands = pytest -s test_pydev_pandas.py test_ds_sorting_commands/test_pandas_internal_pydev.py
|
|
|
|
[testenv:no_pandas_python2.7]
|
|
deps =
|
|
pytest
|
|
teamcity-messages
|
|
ipython
|
|
numpy
|
|
commands = pytest -s test_pydev_nparray.py
|
|
|
|
[testenv:no_pandas_python3.8]
|
|
deps =
|
|
pytest
|
|
teamcity-messages
|
|
ipython
|
|
numpy
|
|
commands = pytest -s test_pydev_nparray.py
|
|
|
|
[testenv:no_pandas_python3.12]
|
|
deps =
|
|
pytest
|
|
teamcity-messages
|
|
ipython
|
|
numpy
|
|
commands = pytest -s test_pydev_nparray.py
|
|
|
|
setenv = PYTHONPATH = {toxinidir}/../third_party/thriftpy
|
|
passenv = TEAMCITY_VERSION |