diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 4dada783..3648dc1e 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -145,17 +145,19 @@ jobs: - name: "test" shell: python - run: + run: | from ansys.mapdl.core import LOG - + LOG.setLevel("DEBUG") + LOG.log_to_file("mylog.log") - + from ansys.mapdl.core import launch_mapdl - + mapdl = launch_mapdl(loglevel="DEBUG") - + print(mapdl.prep7()) + mapdl.exit() - name: "Cache docs build directory"