diff --git a/.appveyor.yml b/.appveyor.yml index e6cc8abe7..c4a53813c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -73,7 +73,6 @@ build_script: bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-11/recipe-04'" && bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-11/recipe-05'" ) else ( - bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-14/recipe-*'" && bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-01/recipe-*'" && bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-02/recipe-*'" && bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-03/recipe-*'" && @@ -86,7 +85,8 @@ build_script: bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-10/recipe-*'" && bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-11/recipe-0[1-3]'" && bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-12/recipe-*'" && - bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-13/recipe-*'" + bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-13/recipe-*'" && + bash -c "cd /c/projects/cmake-cookbook-no-symlinks && pipenv run python testing/collect_tests.py 'chapter-14/recipe-*'" ) deploy: off diff --git a/.circleci/config.yml b/.circleci/config.yml index 7fb449076..14cec9a4b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,7 +47,7 @@ variables: pipenv run python testing/collect_tests.py 'chapter-08/recipe-*' && pipenv run python testing/collect_tests.py 'chapter-09/recipe-*' && pipenv run python testing/collect_tests.py 'chapter-10/recipe-*' && - pipenv run python testing/collect_tests.py 'chapter-11/recipe-0[1,3]' && + pipenv run python testing/collect_tests.py 'chapter-11/recipe-0[1-3]' && pipenv run python testing/collect_tests.py 'chapter-12/recipe-*' && pipenv run python testing/collect_tests.py 'chapter-13/recipe-*' && pipenv run python testing/collect_tests.py 'chapter-14/recipe-*' diff --git a/.travis.yml b/.travis.yml index c925d49c3..39ae8d04a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -133,12 +133,10 @@ script: travis_wait 20 pipenv run python testing/collect_tests.py 'chapter-11/recipe-05'; else pipenv run python testing/collect_tests.py 'chapter-0[1-7]/recipe-*' && - pipenv run python testing/collect_tests.py 'chapter-08/recipe-0(1|3|4|6)' && - travis_wait 30 pipenv run python testing/collect_tests.py 'chapter-08/recipe-0(2|5)' && + pipenv run python testing/collect_tests.py 'chapter-08/recipe-0[1|3-5]' && + travis_wait 30 pipenv run python testing/collect_tests.py 'chapter-08/recipe-02' && pipenv run python testing/collect_tests.py 'chapter-10/recipe-*' && - pipenv run python testing/collect_tests.py 'chapter-11/recipe-01*' && - pipenv run python testing/collect_tests.py 'chapter-11/recipe-02' && - pipenv run python testing/collect_tests.py 'chapter-11/recipe-03' && + pipenv run python testing/collect_tests.py 'chapter-11/recipe-0[1-3]' && pipenv run python testing/collect_tests.py 'chapter-12/recipe-*' && pipenv run python testing/collect_tests.py 'chapter-13/recipe-*' && pipenv run python testing/collect_tests.py 'chapter-14/recipe-*' &&