Skip to content

Commit b7f1753

Browse files
authored
Adding step for importing library and check plotting support. (#2399)
* Adding step for importing library and check plotting support. * better message
1 parent ca1f62b commit b7f1753

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,15 @@ jobs:
8888
library-name: ${{ env.PACKAGE_NAME }}
8989
operating-system: ${{ matrix.os }}
9090
python-version: ${{ matrix.python-version }}
91+
92+
- name: "Importing library"
93+
run: |
94+
python -c "from ansys.mapdl import core as pymapdl; print(pymapdl.Report())"
95+
96+
- name: "Checking plotting support"
97+
run:
98+
python -c "from pyvista.plotting import system_supports_plotting; print('System support plotting ' + str(system_supports_plotting()))"
99+
91100

92101
docs-build:
93102
name: "Build documentation"

0 commit comments

Comments
 (0)