Skip to content

Commit 6ce8d94

Browse files
committedFeb 21, 2017
using a single list to exclude tests on travis
1 parent 896e3c7 commit 6ce8d94

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed
 

‎ci/travis/linux/blacklist.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# black list
12
PyQgsJSONUtils
23
PyQgsLocalServer
34
PyQgsPalLabelingServer
@@ -6,3 +7,10 @@ qgis_composerutils
67
ProcessingGrass7AlgorithmsImageryTest
78
ProcessingGrass7AlgorithmsRasterTest
89
PyQgsDBManagerGpkg
10+
11+
# flacky
12+
qgis_filedownloader
13+
qgis_openstreetmaptest
14+
qgis_wcsprovidertest
15+
PyQgsWFSProviderGUI
16+
qgis_ziplayertest

‎ci/travis/linux/script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ if [ "$CACHE_WARMING" = true ] ; then
3232
xvfb-run ctest -V -R NOTESTS -S ./qgis-test-travis.ctest --output-on-failure
3333
false
3434
else
35-
xvfb-run ctest -V -E "qgis_filedownloader|qgis_openstreetmaptest|qgis_wcsprovidertest|PyQgsWFSProviderGUI|qgis_ziplayertest|$(cat ${DIR}/blacklist.txt | paste -sd '|' -)" -S ./qgis-test-travis.ctest --output-on-failure
35+
xvfb-run ctest -V -E "$(cat ${DIR}/blacklist.txt | sed -r '/^(#.*?)?$/d' | paste -sd '|' -)" -S ./qgis-test-travis.ctest --output-on-failure
3636
fi

‎ci/travis/osx/blacklist.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
qgis_openstreetmaptest
2+
qgis_wcsprovidertest
3+
PyQgsServer
4+
ProcessingGdalAlgorithmsTest
5+
PyQgsOfflineEditingWFS
6+
ProcessingGrass7AlgorithmsImageryTest
7+
ProcessingGrass7AlgorithmsRasterTest
8+
qgis_composerhtmltest
9+
PyQgsOfflineEditingWFS

‎ci/travis/osx/script.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ echo $PATH
1717

1818
export PATH=/usr/bin:${PATH}
1919

20-
ctest -V -E 'qgis_openstreetmaptest|qgis_wcsprovidertest|PyQgsServer|ProcessingGdalAlgorithmsTest|PyQgsOfflineEditingWFS|ProcessingGrass7AlgorithmsImageryTest|ProcessingGrass7AlgorithmsRasterTest|qgis_composerhtmltest|PyQgsOfflineEditingWFS' -S ./qgis-test-travis.ctest --output-on-failure
21-
20+
ctest -V -E "$(cat ${DIR}/blacklist.txt | sed -r '/^(#.*?)?$/d' | paste -sd '|' -)" -S ./qgis-test-travis.ctest --output-on-failure

0 commit comments

Comments
 (0)
Please sign in to comment.