Skip to content

Commit 6c30b1c

Browse files
authored
fix(windows-dev-env): windows dev env start task (#47634)
### What does this PR do? This PR removes the change of directory before the setup, otherwise `windows-dev-env.start` can't find `.python-version` and the task fails. ### Motivation Improve Windows dev env experience ### Describe how you validated your changes ### Additional Notes Co-authored-by: maxime.chambre <maxime.chambre@datadoghq.com>
1 parent 304ebeb commit 6c30b1c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tasks/windows_dev_env.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,7 @@ def run(
8484
def _start_windows_dev_env(ctx, name: str = "windows-dev-env"):
8585
start_time = time.time()
8686

87-
with ctx.cd('./test/e2e-framework'):
88-
ctx.run("dda inv -- setup")
87+
ctx.run("dda inv -- setup")
8988
if shutil.which("rsync") is None:
9089
raise Exception(
9190
"rsync is not installed. Please install rsync by running `brew install rsync` on macOS and try again."

0 commit comments

Comments
 (0)