Skip to content

Commit 1537c46

Browse files
committed
Limit tests to mac operator
1 parent edf1ec5 commit 1537c46

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
@@ -23,6 +23,8 @@
2323
continue
2424
if file_path.stem == "translator":
2525
continue
26+
if file_path.stem != "mac":
27+
continue
2628
try:
2729
if file_path.is_dir():
2830
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)