Skip to content

Commit 30642f6

Browse files
author
Jack Desert
committed
Fail if Specified Interpreter Not Found
(Do NOT use basepython as a fallback) This is intended to remedy these two github issues: tox-dev#882 tox-dev#1484 by :user: jackdesert
1 parent ffb4975 commit 30642f6

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

CONTRIBUTORS

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Igor Duarte Cardoso
4646
Ilya Kulakov
4747
Ionel Maries Cristian
4848
Itxaka Serrano
49+
Jack Desert
4950
Jake Windle
5051
Jannis Leidel
5152
Jesse Schwartzentruber

src/tox/interpreters/unix.py

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
from __future__ import unicode_literals
2+
import sys
23

4+
from tox import reporter
35
import tox
46

57
from .common import base_discover
@@ -8,12 +10,15 @@
810

911
@tox.hookimpl
1012
def tox_get_python_executable(envconfig):
13+
"""
14+
Return path to specified interpreter.
15+
If not available, exit(1).
16+
"""
1117
spec, path = base_discover(envconfig)
12-
if path is not None:
18+
19+
if path is None:
20+
reporter.error('envname {} not found'.format(envconfig.envname))
21+
sys.exit(1)
22+
else:
1323
return path
14-
# 3. check if the literal base python
15-
candidates = [envconfig.basepython]
16-
# 4. check if the un-versioned name is good
17-
if spec.name is not None and spec.name != envconfig.basepython:
18-
candidates.append(spec.name)
19-
return check_with_path(candidates, spec)
24+
~

0 commit comments

Comments
 (0)