Add a series of bdt dev commands to help in local development
1 unresolved thread
1 unresolved thread
Fixes #86 (closed)
Merge request reports
Activity
requested review from @andre.anjos
assigned to @amohammadi
added 1 commit
- be19e0b1 - Add a series of bdt dev commands to help in local development
added 1 commit
- 475675fa - Add a series of bdt dev commands to help in local development
added 1 commit
- b29b78f8 - Add a series of bdt dev commands to help in local development
- bob/devtools/scripts/development.py 0 → 100644
6 7 @click.command(epilog="See bdt dev --help") 8 @click.argument( 9 "folders", 10 nargs=-1, 11 type=click.Path(exists=True, file_okay=False, dir_okay=True), 12 ) 13 def install(folders): 14 """runs pip install -vvv --no-build-isolation --no-dependencies --editable <folder>""" 15 import os 16 import subprocess 17 18 for folder in folders: 19 if not os.path.exists(os.path.join(folder, "setup.py")): 20 raise click.ClickException( 21 "Folder does not contain a setup.py: %s" % folder changed this line in version 6 of the diff
- Resolved by André Anjos
- Resolved by André Anjos
added 1 commit
- f2223566 - [alt-nightlies] Account for pipeline status 'created'
mentioned in commit 9f0aab04
Please register or sign in to reply