Skip to content

Commit 4d6af52

Browse files
committed
Fix ansys-tools-common module sometimes not found on test runs
1 parent f734471 commit 4d6af52

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci_cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,16 +209,16 @@ jobs:
209209

210210
- name: Create Python venv
211211
run: |
212-
python -m venv .venv
212+
python -m venv .venv-docs
213213
214214
- name: Install packages for documentation build
215215
run: |
216-
.\.venv\Scripts\Activate.bat
216+
.\.venv-docs\Scripts\Activate.bat
217217
pip install .[doc]
218218
219219
- name: Build Source Documentation (HTML)
220220
run: |
221-
.\.venv\Scripts\Activate.bat
221+
.\.venv-docs\Scripts\Activate.bat
222222
doc\make.bat html
223223
224224
- name: Upload HTML Documentation
@@ -230,7 +230,7 @@ jobs:
230230

231231
- name: Build Source Documentation (PDF)
232232
run: |
233-
.\.venv\Scripts\Activate.bat
233+
.\.venv-docs\Scripts\Activate.bat
234234
doc\make.bat pdf
235235
236236
- name: Upload PDF documentation

0 commit comments

Comments
 (0)