Skip to content

Commit

Permalink
fix install ddtrace step on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ancalita committed Oct 5, 2023
1 parent ce11d24 commit 70c4709
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/continous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,9 @@ jobs:

- name: Install ddtrace on Windows
if: needs.changes.outputs.backend == 'true' && matrix.os == 'windows-2019'
run: py -m pip install -U 'ddtrace<2.0.0'
run: |
.\.venv\Scripts\activate
py -m pip install -U 'ddtrace<2.0.0'
- name: Test Code 馃攳 (multi-process)
if: needs.changes.outputs.backend == 'true'
Expand Down Expand Up @@ -502,7 +504,9 @@ jobs:

- name: Install ddtrace on Windows
if: needs.changes.outputs.backend == 'true' && matrix.os == 'windows-2019'
run: py -m pip install -U 'ddtrace<2.0.0'
run: |
.\.venv\Scripts\activate
py -m pip install -U 'ddtrace<2.0.0'
- name: Test Code 馃攳 (multi-process)
if: needs.changes.outputs.backend == 'true'
Expand Down

0 comments on commit 70c4709

Please sign in to comment.