tox: Set skipsdist = true
Since our tests don't actually run against the installed package, no point in waiting for an sdist to be built.
This commit is contained in:
parent
5a1910e24d
commit
2a2c49f507
8
tox.ini
8
tox.ini
@ -6,6 +6,7 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist = py34,py35-cov,misc,vulture,flake8,pylint,pyroma,check-manifest
|
envlist = py34,py35-cov,misc,vulture,flake8,pylint,pyroma,check-manifest
|
||||||
distshare = {toxworkdir}
|
distshare = {toxworkdir}
|
||||||
|
skipsdist = true
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
# https://bitbucket.org/hpk42/tox/issue/246/ - only needed for Windows though
|
# https://bitbucket.org/hpk42/tox/issue/246/ - only needed for Windows though
|
||||||
@ -61,7 +62,6 @@ deps = {[testenv:mkvenv]deps}
|
|||||||
# cx_Freeze doesn't support Python 3.5 yet
|
# cx_Freeze doesn't support Python 3.5 yet
|
||||||
basepython = python3.4
|
basepython = python3.4
|
||||||
passenv = {[testenv]passenv}
|
passenv = {[testenv]passenv}
|
||||||
skip_install = true
|
|
||||||
deps =
|
deps =
|
||||||
{[testenv]deps}
|
{[testenv]deps}
|
||||||
-r{toxinidir}/misc/requirements/requirements-cxfreeze.txt
|
-r{toxinidir}/misc/requirements/requirements-cxfreeze.txt
|
||||||
@ -124,7 +124,6 @@ commands =
|
|||||||
|
|
||||||
[testenv:pyroma]
|
[testenv:pyroma]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
skip_install = true
|
|
||||||
passenv =
|
passenv =
|
||||||
deps = -r{toxinidir}/misc/requirements/requirements-pyroma.txt
|
deps = -r{toxinidir}/misc/requirements/requirements-pyroma.txt
|
||||||
commands =
|
commands =
|
||||||
@ -132,7 +131,6 @@ commands =
|
|||||||
|
|
||||||
[testenv:check-manifest]
|
[testenv:check-manifest]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
skip_install = true
|
|
||||||
passenv =
|
passenv =
|
||||||
deps = -r{toxinidir}/misc/requirements/requirements-check-manifest.txt
|
deps = -r{toxinidir}/misc/requirements/requirements-check-manifest.txt
|
||||||
commands =
|
commands =
|
||||||
@ -140,7 +138,6 @@ commands =
|
|||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
skip_install = true
|
|
||||||
whitelist_externals = git
|
whitelist_externals = git
|
||||||
passenv = TRAVIS_PULL_REQUEST
|
passenv = TRAVIS_PULL_REQUEST
|
||||||
deps =
|
deps =
|
||||||
@ -156,7 +153,6 @@ commands =
|
|||||||
# PYTHON is actually required when using this env, but the entire tox.ini would
|
# PYTHON is actually required when using this env, but the entire tox.ini would
|
||||||
# fail if we didn't have a fallback defined.
|
# fail if we didn't have a fallback defined.
|
||||||
basepython = {env:PYTHON:}/python.exe
|
basepython = {env:PYTHON:}/python.exe
|
||||||
skip_install = true
|
|
||||||
deps =
|
deps =
|
||||||
-r{toxinidir}/misc/requirements/requirements-pip.txt
|
-r{toxinidir}/misc/requirements/requirements-pip.txt
|
||||||
-r{toxinidir}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
@ -168,7 +164,6 @@ commands =
|
|||||||
|
|
||||||
[testenv:pyinstaller]
|
[testenv:pyinstaller]
|
||||||
basepython = python3
|
basepython = python3
|
||||||
skip_install = true
|
|
||||||
deps =
|
deps =
|
||||||
-r{toxinidir}/misc/requirements/requirements-pip.txt
|
-r{toxinidir}/misc/requirements/requirements-pip.txt
|
||||||
-r{toxinidir}/requirements.txt
|
-r{toxinidir}/requirements.txt
|
||||||
@ -178,7 +173,6 @@ commands =
|
|||||||
{envbindir}/pyinstaller --noconfirm misc/qutebrowser.spec
|
{envbindir}/pyinstaller --noconfirm misc/qutebrowser.spec
|
||||||
|
|
||||||
[testenv:eslint]
|
[testenv:eslint]
|
||||||
skip_install = True
|
|
||||||
deps = -r{toxinidir}/misc/requirements/requirements-pip.txt
|
deps = -r{toxinidir}/misc/requirements/requirements-pip.txt
|
||||||
whitelist_externals = eslint
|
whitelist_externals = eslint
|
||||||
commands = eslint --color qutebrowser/javascript
|
commands = eslint --color qutebrowser/javascript
|
||||||
|
Loading…
Reference in New Issue
Block a user