diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 718a8928e483..2825022a0164 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 @@ -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 diff --git a/Makefile b/Makefile index 703f73b1c837..95e79d8cf1d1 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/ansys/fluent/core/launcher/launcher.py b/ansys/fluent/core/launcher/launcher.py index 8eb85c587c58..9b15b143886b 100644 --- a/ansys/fluent/core/launcher/launcher.py +++ b/ansys/fluent/core/launcher/launcher.py @@ -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)