Skip to content
Snippets Groups Projects
Commit fb5b9d37 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

remove install check

parent f2223566
No related branches found
No related tags found
1 merge request!277Add a series of bdt dev commands to help in local development
Pipeline #58926 passed
...@@ -12,14 +12,9 @@ from pkg_resources import iter_entry_points ...@@ -12,14 +12,9 @@ from pkg_resources import iter_entry_points
) )
def install(folders): def install(folders):
"""runs pip install -vvv --no-build-isolation --no-dependencies --editable <folder>""" """runs pip install -vvv --no-build-isolation --no-dependencies --editable <folder>"""
import os
import subprocess import subprocess
for folder in folders: for folder in folders:
if not os.path.exists(os.path.join(folder, "setup.py")):
raise click.ClickException(
"Folder does not contain a setup.py: %s" % folder
)
# call pip # call pip
subprocess.check_call( subprocess.check_call(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment