Browse Source

Run python tutorial in Travis.

Jérémie Dumas 6 years ago
parent
commit
44fc595bcb
1 changed files with 6 additions and 3 deletions
  1. 6 3
      .travis.yml

+ 6 - 3
.travis.yml

@@ -59,10 +59,13 @@ install:
 script:
 # Tutorials and tests
 - mkdir build
-- cd build
+- pushd build
 - cmake -DCMAKE_BUILD_TYPE=$CONFIG -DLIBIGL_CHECK_UNDEFINED=ON -DLIBIGL_WITH_PYTHON=ON -DLIBIGL_WITH_CGAL=ON -DEMBREE_ISA_AVX=OFF -DEMBREE_ISA_AVX2=OFF -DEMBREE_ISA_AVX512SKX=OFF ../
 - make -j 2
 - ctest --verbose
-- ccache --show-stats
-- cd ../
+- popd
+- pushd python/tutorial
+- ${PYTHON} 101_FileIO.py
+- popd
 - rm -rf build
+- ccache --show-stats