We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab95394 commit 8825decCopy full SHA for 8825dec
.github/workflows/ci_cd.yml
@@ -48,8 +48,11 @@ jobs:
48
uv pip install ansys-modelcenter-workflow
49
50
- name: "Run basic example"
51
+ env:
52
+ AWP_ROOT: 'C:\Program Files\ANSYS Inc'
53
run: |
54
.venv\Scripts\activate
55
+ python -c "import sys; print(sys.executable)"
56
python examples/BasicExample.py
57
58
# doc-style:
examples/BasicExample.py
@@ -39,7 +39,7 @@
39
workflow_path = os.path.join(cwd, workflow_filename)
40
41
print("Initializing workflow engine...")
42
-with Engine(heartbeat_interval=60*1_000) as mc:
+with Engine(heartbeat_interval=60 * 1_000) as mc:
43
print("Loading workflow: " + workflow_path)
44
with mc.load_workflow(workflow_path) as workflow:
45
print("Loaded: " + workflow_filename)
0 commit comments