Skip to content

Commit a8d6a65

Browse files
committed
vodecov cleaning
1 parent 4f2c903 commit a8d6a65

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

installation/DOCKER_INSTALLATION.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ docker build --platform=linux/amd64 -t ceasiompy-image -f CEASIOMpy_docker_Insta
4444
Run the Docker container (you need to modify /pathtoYOURlocal/CEASIOMpy with the absolute path of your CEASIOMpy's folder location):
4545

4646
```bash
47-
docker run -it --rm --network=host \
47+
docker run --init -it --shm-size="8g" --rm --net=host \
4848
-e DISPLAY=$DISPLAY \
4949
-e LIBGL_ALWAYS_SOFTWARE=1 \
5050
-v /tmp/.X11-unix:/tmp/.X11-unix \
5151
--ipc=host \
52-
-v /pathtoYOURlocal/CEASIOMpy:/CEASIOMpy \
53-
ceasiompy-image
52+
-v /home/cfse2/Leon/framatIntoCeasiompy/CEASIOMpy:/CEASIOMpy \
53+
ceasiompy-image /bin/bash
5454
```
5555

5656
You can now click on local URL and use CEASIOMpy's GUI (Graphical User Interface) with all of its required software.

installation/Ubuntu/install_su2_with_mpi.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ echo "Configuring SU2 with Meson..."
4747
python3 meson.py build --prefix="${INSTALL_DIR}" \
4848
-Denable-autodiff=true \
4949
-Denable-directdiff=true \
50-
-Dcustom-mpi=true \
51-
-Dextra-deps=mpich \
5250
-Dwith-mpi=enabled \
5351
-Dwith-omp=true \
5452
--buildtype=release

tests/test_integration_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def test_integration_1():
7575
@pytest.mark.skipif(not shutil.which("pentagrow"), reason="Pentagrow not installed")
7676
@pytest.mark.skipif(not shutil.which("SU2_CFD"), reason="SU2_CFD not installed")
7777
def test_integration_2():
78-
run_workflow_test([CPACSUPDATER, CPACS2GMSH, SU2RUN, EXPORTCSV], cpacs_path=CPACS_RANS)
78+
run_workflow_test([CPACS2GMSH, SU2RUN, EXPORTCSV], cpacs_path=CPACS_RANS)
7979
assert True
8080

8181

@@ -91,5 +91,5 @@ def test_integration_3():
9191
@pytest.mark.skipif(not shutil.which("avl"), reason="avl not installed")
9292
@pytest.mark.skipif(not shutil.which("SU2_CFD"), reason="SU2_CFD not installed")
9393
def test_integration_4():
94-
run_workflow_test([CPACS2GMSH, SMTRAIN, SMUSE, SAVEAEROCOEF])
94+
run_workflow_test([CPACSUPDATER, CPACS2GMSH, SMTRAIN, SMUSE, SAVEAEROCOEF])
9595
assert True

0 commit comments

Comments
 (0)