File tree 2 files changed +13
-7
lines changed
2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ Igor Duarte Cardoso
46
46
Ilya Kulakov
47
47
Ionel Maries Cristian
48
48
Itxaka Serrano
49
+ Jack Desert
49
50
Jake Windle
50
51
Jannis Leidel
51
52
Jesse Schwartzentruber
Original file line number Diff line number Diff line change 1
1
from __future__ import unicode_literals
2
+ import sys
2
3
4
+ from tox import reporter
3
5
import tox
4
6
5
7
from .common import base_discover
8
10
9
11
@tox .hookimpl
10
12
def tox_get_python_executable (envconfig ):
13
+ """
14
+ Return path to specified interpreter.
15
+ If not available, exit(1).
16
+ """
11
17
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 :
13
23
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
+ ~
You can’t perform that action at this time.
0 commit comments