Skip to content

Commit 168847c

Browse files
author
Taniya Mathur
committed
Fix idp_cli installation to follow docs pattern: cd to directory then pip install -e .
1 parent 8f483d4 commit 168847c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/sdlc/idp-cli/src/idp_cli/service/smoketest_idp_cli_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ def do_smoketest(self):
3131
logger.info("Installing IDP CLI...")
3232
idp_cli_path = os.path.join(self.cwd, "idp_cli")
3333
subprocess.run([
34-
"pip", "install", "-e", idp_cli_path
35-
], check=True, cwd=self.cwd)
34+
"pip", "install", "-e", "."
35+
], check=True, cwd=idp_cli_path)
3636

3737
# Deploy stack using idp-cli deploy
3838
logger.info(f"Deploying stack {self.stack_name}...")

0 commit comments

Comments
 (0)