FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
gopy/main_windows_test.go at master · go-python/gopy · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
go-python
/
gopy
Public
Notifications
You must be signed in to change notification settings
Fork
136
Star
2.3k
Code
Issues
56
Pull requests
6
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
gopy
/
main_windows_test.go
Copy path
More file actions
More file actions
Latest commit
History
History
History
81 lines (71 loc) · 1.66 KB
Breadcrumbs
gopy
/
main_windows_test.go
Copy path
File metadata and controls
81 lines (71 loc) · 1.66 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright 2015 The go-python Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build windows
// +build windows
package
main
import
(
"log"
"os"
"os/exec"
"strings"
)
func
init
() {
testEnvironment
=
os
.
Environ
()
var
(
// py2 = "python2"
py3
=
"python3"
// pypy2 = "pypy"
// pypy3 = "pypy3"
)
if
os
.
Getenv
(
"GOPY_TRAVIS_CI"
)
==
"1"
{
log
.
Printf
(
"Running in travis CI"
)
}
var
(
disabled
[]
string
missing
int
)
for
_
,
be
:=
range
[]
struct
{
name
string
vm
string
module
string
mandatory
bool
}{
{
"py3"
,
py3
,
""
,
true
},
} {
args
:=
[]
string
{
"-c"
,
""
}
if
be
.
module
!=
""
{
args
[
1
]
=
"import "
+
be
.
module
}
log
.
Printf
(
"checking testbackend: %q..."
,
be
.
name
)
py
,
err
:=
exec
.
LookPath
(
be
.
vm
)
if
err
!=
nil
{
log
.
Printf
(
"gopy: could not locate 'python' executable (err: %v)"
,
err
)
}
else
{
log
.
Printf
(
"python executable found at: %s
\n
"
,
py
)
cmd
:=
exec
.
Command
(
py
,
args
...
)
cmd
.
Stdin
=
os
.
Stdin
cmd
.
Stdout
=
os
.
Stdout
cmd
.
Stderr
=
os
.
Stderr
err
=
cmd
.
Run
()
}
if
err
!=
nil
{
log
.
Printf
(
"disabling testbackend: %q, error: '%s'"
,
be
.
name
,
err
.
Error
())
testBackends
[
be
.
name
]
=
""
disabled
=
append
(
disabled
,
be
.
name
)
if
be
.
mandatory
{
missing
++
}
}
else
{
log
.
Printf
(
"enabling testbackend: %q"
,
be
.
name
)
testBackends
[
be
.
name
]
=
be
.
vm
}
}
if
len
(
disabled
)
>
0
{
log
.
Printf
(
"The following test backends are not available: %s"
,
strings
.
Join
(
disabled
,
", "
))
if
os
.
Getenv
(
"GOPY_TRAVIS_CI"
)
==
"1"
&&
missing
>
0
{
log
.
Fatalf
(
"Not all backends available in travis CI"
)
}
}
}
Back
|
FazBrowse Home
|
New Git URL