summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-28 08:33:16 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-28 08:33:16 +0200
commit0dfe5025dcfb1ac1db4e74394f7d7aa917ec8721 (patch)
treee476e0f19e7639c383f93dea9fb99ddc350cd126
parenteae4534638cd0c152fbe42fa62ec3c638c05e214 (diff)
remove sphinx test on azure and apveyor
-rw-r--r--.appveyor.yml2
-rw-r--r--azure-pipelines.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index d072a366..d48ec43e 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -59,7 +59,7 @@ build_script:
- if [%target%]==[Python] (
cd src/python &
MSBuild Cython.sln /m /p:Configuration=Release /p:Platform=x64 &
- ctest -j 1 --output-on-failure -C Release
+ ctest -j 1 --output-on-failure -C Release -E sphinx
) else (
MSBuild GUDHIdev.sln /m /p:Configuration=Release /p:Platform=x64 &
ctest -j 1 --output-on-failure -C Release -E diff_files
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 29ec23d0..7b5334a7 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -33,5 +33,5 @@ jobs:
cmake -DCMAKE_BUILD_TYPE:STRING=$(cmakeBuildType) -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=ON -DPython_ADDITIONAL_VERSIONS=3 ..
make -j 4
make doxygen
- ctest -j 4 --output-on-failure # -E sphinx remove sphinx build as it fails
+ ctest -j 4 --output-on-failure -E sphinx # remove sphinx build as it fails
displayName: 'Build, test and documentation generation'