Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cbellot000 committed Jul 27, 2022
1 parent 27ed64d commit 752a3b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: doc-ansys-dpf-core
path: ./docs/build/*
path: ./docs/build/html/*
if: always()

- name: Publish Documentation log
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@
from ansys.dpf import core as dpf
from ansys.dpf.core import examples

# python plugins are not supported in process
dpf.start_local_server(config=dpf.AvailableServerConfigs.GrpcServer)

operator_server_file_path = dpf.upload_file_in_tmp_folder(operator_file_path)
dpf.load_library(os.path.dirname(operator_server_file_path), "py_easy_statistics", "load_operators")

Expand Down Expand Up @@ -86,7 +89,6 @@
norm = dpf.operators.math.norm(displacement)
new_operator.inputs.connect(norm)


print("first quartile is", new_operator.outputs.first_quartile())
print("median is", new_operator.outputs.median())
print("third quartile is", new_operator.outputs.third_quartile())
Expand Down

0 comments on commit 752a3b2

Please sign in to comment.