Skip to content

Commit

Permalink
fix: installing dependencies before tests
Browse files Browse the repository at this point in the history
  • Loading branch information
clatapie committed Apr 29, 2024
1 parent c109188 commit fd90e69
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,12 @@ jobs:
# - run:
# ps aux | grep ${{ env.DOCKER_PID }}


- name: "Install Python requirements"
run: |
pip uninstall ansys-mapdl-core
pip install -r requirements/requirements_doc.txt
- name: "test"
shell: python
run: |
Expand All @@ -146,11 +152,6 @@ jobs:
sudo apt-get update
sudo apt install zip pandoc libgl1-mesa-glx xvfb texlive-latex-extra latexmk graphviz texlive-xetex libgomp1
- name: "Install Python requirements"
run: |
pip uninstall ansys-mapdl-core
pip install -r requirements/requirements_doc.txt
- name: "Test virtual framebuffer"
run: |
xvfb-run python .ci/display_test.py
Expand Down

0 comments on commit fd90e69

Please sign in to comment.