File tree 2 files changed +16
-3
lines changed
2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -55,10 +55,15 @@ def wait(self):
55
55
while True :
56
56
return_code = self ._process .poll ()
57
57
if return_code is not None :
58
- line = self ._process .stdout .readline (). decode ( "utf-8" )
59
- if line == "" :
58
+ line = self ._process .stdout .readline ()
59
+ if not line :
60
60
break
61
- log .debug (line .strip ("\n " ))
61
+ try :
62
+ line = line .decode ("utf-8" )
63
+ line = line .strip ("\n " )
64
+ except UnicodeDecodeError :
65
+ pass
66
+ log .debug (line )
62
67
63
68
return True
64
69
Original file line number Diff line number Diff line change @@ -20,6 +20,14 @@ passenv =
20
20
NEO4J_URI
21
21
AWS_ACCESS_KEY_ID
22
22
AWS_SECRET_ACCESS_KEY
23
+ APPDATA
24
+ LOCALAPPDATA
25
+ ProgramData
26
+ windir
27
+ ProgramFiles
28
+ ProgramFiles(x86)
29
+ ProgramW6432
30
+ # APPDATA and below are needed for Neo4j >=4.3 service to run on Windows
23
31
deps =
24
32
-r tests/requirements.txt
25
33
commands =
You can’t perform that action at this time.
0 commit comments