-
Notifications
You must be signed in to change notification settings - Fork 104
/
tox.ini
27 lines (23 loc) · 891 Bytes
/
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
# tox.ini: configuration file for tox
# This file was automatically generated using 'python -m vsc.install.ci'
# DO NOT EDIT MANUALLY
[tox]
envlist = py36,py39
skipsdist = true
[testenv:py36]
commands_pre =
pip install 'setuptools<42.0'
python -m easy_install -U vsc-install
python -m easy_install -U vsc-base
python -m easy_install -U vsc-install
[testenv:py39]
ignore_outcome = true
setenv = SETUPTOOLS_USE_DISTUTILS=local
commands_pre =
pip install 'setuptools<54.0' wheel
python -c "from setuptools import setup;setup(script_args=['-q', 'easy_install', '-v', '-U', 'vsc-install'])"
python -c "from setuptools import setup;setup(script_args=['-q', 'easy_install', '-v', '-U', 'vsc-base'])"
python -c "from setuptools import setup;setup(script_args=['-q', 'easy_install', '-v', '-U', 'vsc-utils'])"
[testenv]
commands = python runtest.py
passenv = USER