Skip to content

Commit b0faf24

Browse files
committed
Limit tests to mac operator
1 parent eacedfe commit b0faf24

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.ci/code_generation.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
continue
2626
if file_path.stem == "translator":
2727
continue
28+
if file_path.stem != "mac":
29+
continue
2830
try:
2931
if file_path.is_dir():
3032
shutil.rmtree(file_path)

src/ansys/dpf/core/operators/build.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,8 @@ def build_operators():
195195
translator = Markdown2RstTranslator()
196196

197197
for operator_name in available_operators:
198+
if operator_name != "mac":
199+
continue
198200
if succeeded == done + 100:
199201
done += 100
200202
print(f"{done} operators done...")

0 commit comments

Comments
 (0)