Skip to content

Commit 115e130

Browse files
authored
Merge pull request #7 from su2code/feature_pyWrapper
Feature Python wrapper - Add files for the external FSI coupling test case.
2 parents e09cdfd + 62d2c6e commit 115e130

File tree

4 files changed

+56018
-3
lines changed

4 files changed

+56018
-3
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ env:
2121
BUILD_DIR=$TRAVIS_BUILD_DIR/SU2
2222
matrix:
2323
# Serial build and test
24-
- CONFIGURE_COMMAND="./configure --prefix=$BUILD_DIR"
24+
- CONFIGURE_COMMAND="./configure --prefix=$BUILD_DIR --enable-PY_WRAPPER"
2525
TEST_SCRIPT=serial_regression.py
2626
# Parallel build and test
27-
- CONFIGURE_COMMAND="./configure --enable-mpi --with-cc=mpicc --with-cxx=mpicxx --prefix=$BUILD_DIR"
27+
- CONFIGURE_COMMAND="./configure --enable-mpi --with-cc=mpicc --with-cxx=mpicxx --prefix=$BUILD_DIR --enable-PY_WRAPPER"
2828
TEST_SCRIPT=parallel_regression.py
2929

3030
before_install:
3131
# install the necessary packages
3232
- sudo apt-get update -qq
33-
- sudo apt-get install -qq python-numpy python-scipy mpich2
33+
- sudo apt-get install -qq python-numpy python-scipy python-pip mpich2 swig
3434
# Move all of the test data for easier copying into the SU2 repo
3535
- mkdir TestData
3636
- shopt -s extglob
@@ -41,6 +41,7 @@ before_install:
4141
- git checkout develop
4242

4343
install:
44+
- sudo pip install mpi4py
4445
- echo $BUILD_DIR
4546
- echo $CONFIGURE_COMMAND
4647
- $CONFIGURE_COMMAND

0 commit comments

Comments
 (0)