-
Notifications
You must be signed in to change notification settings - Fork 15
/
tox.ini
38 lines (32 loc) · 1.11 KB
/
tox.ini
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
# 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 = py27, py38
# 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
commands =
; python setup.py test -vst test/unit/
./ci-build
[testenv:py27ci]
basepython = python2.7
platform = linux.*
deps =
setuptools>=40.0
https://github.com/ome/zeroc-ice-py-manylinux/releases/download/0.1.0/zeroc_ice-3.6.5-cp27-cp27mu-manylinux2010_x86_64.whl
[testenv:py38ci]
basepython = python3.8
platform = linux.*
deps =
setuptools>=40.0
https://github.com/ome/zeroc-ice-ubuntu2004/releases/download/0.2.0/zeroc_ice-3.6.5-cp38-cp38-linux_x86_64.whl
; [testenv:py27]
; basepython = /CONDA/envs/tox-py27/bin/python
; [testenv:py38]
; basepython = /CONDA/envs/tox-py38/bin/python