Skip to content

Commit e66e892

Browse files
committed
Install dvc via choco on Windows
1 parent b5a5b1c commit e66e892

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci_tests.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,13 @@ jobs:
153153
env:
154154
GH_TOKEN: ${{ github.token }}
155155

156-
- name: Setup data version control (DVC)
156+
- name: Setup data version control (DVC) [Unix]
157157
run: python -m pip install dvc
158+
if: runner.os != 'Windows'
159+
160+
- name: Setup data version control (DVC) [Windows]
161+
run: choco install dvc
162+
if: runner.os == 'Windows'
158163

159164
# Pull baseline image data from dvc remote (DAGsHub)
160165
- name: Pull baseline image data from dvc remote

0 commit comments

Comments
 (0)