File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,8 @@ jobs:
124
124
- run : sudo apt-get -yq install graphviz
125
125
name : Install graphviz
126
126
if : ${{ matrix.install_graphviz }}
127
- - run : pip install -e .${{ matrix.extras }}
127
+ # Add verbose flag to pip installation if in debug mode
128
+ - run : pip install -e .${{ matrix.extras }} ${{ fromJSON('["","-v"]')[runner.debug] }}
128
129
name : Install econml
129
130
- run : pip install pytest pytest-runner jupyter jupyter-client nbconvert nbformat seaborn xgboost tqdm
130
131
name : Install test and notebook requirements
@@ -183,7 +184,8 @@ jobs:
183
184
python-version : ${{ matrix.python-version }}
184
185
- run : python -m pip install --upgrade pip && pip install --upgrade setuptools
185
186
name : Ensure latest pip and setuptools
186
- - run : pip install -e .${{ matrix.extras }}
187
+ # Add verbose flag to pip installation if in debug mode
188
+ - run : pip install -e .${{ matrix.extras }} ${{ fromJSON('["","-v"]')[runner.debug] }}
187
189
name : Install econml
188
190
- run : pip install pytest pytest-runner coverage
189
191
name : Install pytest
You can’t perform that action at this time.
0 commit comments