"query_string.h" is part of qs_parse and shouldn't be part of Crow's coverage

This commit is contained in:
The-EDev 2021-09-30 04:46:54 +03:00
parent 278540ec60
commit f6aef65523
2 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ steps:
- make -j4
- ctest -V -j4
- cd ..
- coveralls --verbose --exclude-pattern .*/http_parser_merged.h --exclude-pattern .*/TinySHA1.hpp
- coveralls --verbose --exclude-pattern .*/http_parser_merged.h --exclude-pattern .*/TinySHA1.hpp --exclude-pattern .*/query_string.h
- export CC=/usr/bin/clang
- export CXX=/usr/bin/clang++
- mkdir build-clang
@ -126,7 +126,7 @@ steps:
- make -j4
- ctest -V -j4
- cd ..
- coveralls --verbose --exclude-pattern .*/http_parser_merged.h --exclude-pattern .*/TinySHA1.hpp
- coveralls --verbose --exclude-pattern .*/http_parser_merged.h --exclude-pattern .*/TinySHA1.hpp --exclude-pattern .*/query_string.h
- export CC=/usr/bin/clang
- export CXX=/usr/bin/clang++
- mkdir build-clang

View File

@ -46,12 +46,12 @@ before_script:
- mkdir build
- cd build
- cmake --version
- cmake .. -DCROW_ENABLE_COMPRESSION=ON -DCROW_ENABLE_SSL=ON
- cmake .. -DCROW_ENABLE_COMPRESSION=ON -DCROW_ENABLE_SSL=ON -DCROW_AMALGAMATE=ON
script: make -j4 && ctest -V -j4
after_success:
- cd ..
- if [ "$PUSH_COVERAGE" == "ON" ]; then coveralls -i include --exclude-pattern .*/http_parser_merged.h --exclude-pattern .*/TinySHA1.hpp --gcov-options '\-lp'; fi
- if [ "$PUSH_COVERAGE" == "ON" ]; then coveralls -i include --exclude-pattern .*/http_parser_merged.h --exclude-pattern .*/TinySHA1.hpp --exclude-pattern .*/query_string.h --gcov-options '\-lp'; fi
- chmod +x scripts/generateDocumentationAndDeploy.sh
- if [ "$TRAVIS_BUILD_DOCS" == "ON" ]; then ./scripts/generateDocumentationAndDeploy.sh; fi