-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtox.ini
More file actions
48 lines (39 loc) · 1.45 KB
/
tox.ini
File metadata and controls
48 lines (39 loc) · 1.45 KB
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
41
42
43
44
45
46
47
48
# 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.
[tox]
envlist = py310
# https://tox.readthedocs.io/en/latest/config.html#conf-requires
# Ensure pip is new so we can install manylinux wheel
requires = pip >= 19.0.0
virtualenv >= 16.0.0
[testenv]
# Variables used by ci-build
passenv = HOME, USER_AGENT, TEST
allowlist_externals = bash
commands =
; python setup.py test -vst test/unit/
bash ./ci-build
[testenv:py310ci]
basepython = python3.10
platform = linux.*
deps =
setuptools>=40.0
https://github.com/glencoesoftware/zeroc-ice-py-linux-x86_64/releases/download/20240202/zeroc_ice-3.6.5-cp310-cp310-manylinux_2_28_x86_64.whl
; [testenv:py312ci]
; basepython = python3.12
; platform = linux.*
; deps =
; setuptools>=40.0
; https://github.com/glencoesoftware/zeroc-ice-py-linux-x86_64/releases/download/20240202/zeroc_ice-3.6.5-cp312-cp312-manylinux_2_28_x86_64.whl
; [testenv:py311ci]
; basepython = python3.11
; platform = linux.*
; deps =
; ; setuptools>=40.0
; https://github.com/glencoesoftware/zeroc-ice-py-linux-x86_64/releases/download/20240202/zeroc_ice-3.6.5-cp311-cp311-manylinux_2_28_x86_64.whl
; [testenv:py27]
; basepython = /CONDA/envs/tox-py27/bin/python
; [testenv:py38]
; basepython = /CONDA/envs/tox-py38/bin/python