File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -134,15 +134,16 @@ def testp():
134134 print("Plugin here")
135135 """ )
136136
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.
144138 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" )
146147
147148 return venv_world
148149
You can’t perform that action at this time.
0 commit comments