diff --git a/.ci/run_vms.py b/.ci/run_vms.py deleted file mode 100644 index 8b1e7f8262..0000000000 --- a/.ci/run_vms.py +++ /dev/null @@ -1,15 +0,0 @@ -"""Run some vm manuals""" -from ansys.mapdl.core import launch_mapdl -from ansys.mapdl.core.examples import vmfiles - -mapdl = launch_mapdl(start_timeout=100) - -vms = list(vmfiles.keys()) - -for i, vm in enumerate(vms[:2]): - mapdl.clear() - print(f"Running the vm {i}: {vm}") - output = mapdl.input(vmfiles[vm]) - print(f"Running the vm {i}: Successfully completed") - -mapdl.exit() diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c427f667bf..e3de78c98a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -628,12 +628,6 @@ jobs: python -m pip install . --no-deps python -m pip install -r minimum_requirements.txt python -c "from ansys.mapdl import core as pymapdl; print('Import successfull')" - - - name: "Running some verification manual examples" - run: | - unset PYMAPDL_START_INSTANCE - export ANSYSLMD_LICENSE_FILE=1055@${{ secrets.LICENSE_SERVER }} - python .ci/run_vms.py - name: "Unit testing requirements installation" run: |