mirror of https://github.com/pytest-dev/pytest.git
Use isolated_build option in tox.ini
As per the excellent article by gaborbernat: https://www.bernat.tech/pep-517-518/
This commit is contained in:
parent
ea732464aa
commit
9be069f899
|
@ -5,6 +5,7 @@ requires = [
|
||||||
"setuptools-scm",
|
"setuptools-scm",
|
||||||
"wheel",
|
"wheel",
|
||||||
]
|
]
|
||||||
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[tool.towncrier]
|
[tool.towncrier]
|
||||||
package = "pytest"
|
package = "pytest"
|
||||||
|
|
3
tox.ini
3
tox.ini
|
@ -1,5 +1,6 @@
|
||||||
[tox]
|
[tox]
|
||||||
minversion = 2.0
|
isolated_build = True
|
||||||
|
minversion = 3.3
|
||||||
distshare = {homedir}/.tox/distshare
|
distshare = {homedir}/.tox/distshare
|
||||||
# make sure to update environment list in travis.yml and appveyor.yml
|
# make sure to update environment list in travis.yml and appveyor.yml
|
||||||
envlist =
|
envlist =
|
||||||
|
|
Loading…
Reference in New Issue