1
0
mirror of https://github.com/fedora-python/tox-current-env.git synced 2024-12-25 09:36:13 +01:00
github.com_fedora-python_to.../tests/fixtures/tox.ini
Miro Hrončok 10da929f4b Test that the tested package is never/always installed to the test environment
Where "never" means:

 - with and without usedevelop
 - with all options of this plugin

Where "always" means:

 - with and without usedevelop
 - without options of this plugin
2020-11-04 17:04:11 +01:00

14 lines
257 B
INI

[tox]
envlist = py36,py37,py38,py39
[testenv]
deps =
six
py
extras =
dev
full
commands =
python -c 'import os, sys; print(os.path.realpath(sys.exec_prefix), "is the exec_prefix")'
# note: some tests assume [testenv] is the last section