Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,6 @@ jobs:
- name: Install pyfluent
run: make install

- name: Install pyvistaqt requirements
if: matrix.os == 'ubuntu-latest'
run: make install-pyvistaqt-requirements

- name: Test import
run: make test-import

Expand Down Expand Up @@ -120,7 +116,7 @@ jobs:
restore-keys: |
Python-${{ runner.os }}-${{ matrix.python-version }}

- name: Install pyfluent with post module
- name: Install pyfluent with post requirements
run: make install-post

- name: Login to GitHub Container Registry
Expand Down Expand Up @@ -182,15 +178,12 @@ jobs:
restore-keys: |
Python-${{ runner.os }}-${{ matrix.python-version }}

- name: Install pyfluent
run: make install

- name: Install pyvistaqt requirements
run: make install-pyvistaqt-requirements

- name: Install post requirements
- name: Install pyfluent with post requirements
run: make install-post

- name: Unit Testing
run: make unittest

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ install-post:
@pip install dist/ansys_fluent_solver-0.2.dev0-py3-none-any.whl[post]

install-pyvistaqt-requirements:
@sudo apt-get update
@sudo apt-get install libegl1 -y
@sudo apt update
@sudo apt install libegl1 -y

docker-pull:
@docker pull ghcr.io/pyansys/pyfluent:latest
Expand Down
1 change: 1 addition & 0 deletions ansys/fluent/core/launcher/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ def launch_fluent(
try:
launch_string += f" {additional_arguments}"
launch_string += f' -sifile="{server_info_filepath}"'
launch_string += " -nm"
if not os.getenv("PYFLUENT_SHOW_SERVER_GUI"):
launch_string += " -hidden"
LOG.info("Launching Fluent with cmd: %s", launch_string)
Expand Down