Skip to content

Commit 7f27a06

Browse files
committed
Fix issues
1 parent 2ebbb3d commit 7f27a06

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/yup_python/yup_ScriptPython.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ TEST_F (ScriptPythonTest, RunPythonTests)
102102
import sys
103103
104104
sys.path.append('{{root_path}}/lib/python{{version}}/site-packages')
105-
sys.path.append('{{root_path}}/local/lib/python{{version}}/site-packages')
106105
107106
package = 'pytest'
108107
@@ -118,9 +117,10 @@ TEST_F (ScriptPythonTest, RunPythonTests)
118117
finally:
119118
sys.argv = old_argv
120119
121-
os.system('ls -la {{root_path}}/local')
122-
os.system('ls -la {{root_path}}/local/*')
123-
os.system('ls -la {{root_path}}/local/*/*')
120+
os.system('ls -la {{root_path}}')
121+
os.system('ls -la {{root_path}}/*')
122+
os.system('ls -la {{root_path}}/*/*')
123+
os.system('ls -la {{root_path}}/*/*/*')
124124
125125
import pytest
126126

0 commit comments

Comments
 (0)