File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -134,15 +134,16 @@ def testp():
134
134
print("Plugin here")
135
135
""" )
136
136
137
- # Install the third-party packages.
138
- run_in_venv ("python -m pip install --no-index ./third_pkg" )
139
- run_in_venv ("python -m pip install --no-index -e ./another_pkg" )
140
- run_in_venv ("python -m pip install --no-index -e ./bug888/app -e ./bug888/plugin" )
141
- shutil .rmtree ("third_pkg" )
142
-
143
- # Install coverage.
137
+ # Install everything.
144
138
coverage_src = nice_file (TESTS_DIR , ".." )
145
- run_in_venv (f"python -m pip install --no-index { coverage_src } " )
139
+ run_in_venv (
140
+ "python -m pip install --no-index " +
141
+ "./third_pkg " +
142
+ "-e ./another_pkg " +
143
+ "-e ./bug888/app -e ./bug888/plugin " +
144
+ coverage_src
145
+ )
146
+ shutil .rmtree ("third_pkg" )
146
147
147
148
return venv_world
148
149
You can’t perform that action at this time.
0 commit comments