summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-12-10 09:36:46 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-12-10 09:38:08 +0100
commit8f6e2837f5cf6f40e86c3aad5e471ab009f137ca (patch)
tree232567037a0763fc10416fc2ab6b3c9351da60cd
parent476a8320945243c80bdf3b161232511442d8dc49 (diff)
downloadcurl-bagder/travis-no-coverage.tar.gz
travis: remove "coverage", make it "torture"bagder/travis-no-coverage
The coveralls service and test coverage numbers are just too unreliable. Removed badge from README.md as well. Fixes #4694
-rw-r--r--.travis.yml12
-rw-r--r--README.md1
2 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 16bbb1c3e..5e2a05c4f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -304,7 +304,7 @@ matrix:
compiler: gcc
dist: xenial
env:
- - T=coverage
+ - T=torture
- OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
addons:
apt:
@@ -540,6 +540,16 @@ script:
fi
- |
set -eo pipefail
+ if [ "$T" = "torture" ]; then
+ ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --enable-alt-svc --with-libssh2
+ make
+ make TFLAGS=-n test-nonflaky
+ make "TFLAGS=-n -e" test-nonflaky
+ tests="1 200 300 500 700 800 900 1000 1100 1200 1302 1400 1502 3000"
+ make "TFLAGS=-n -t $tests" test-nonflaky
+ fi
+ - |
+ set -eo pipefail
if [ "$T" = "debug" ]; then
./configure --enable-debug --enable-werror $C
make && make examples
diff --git a/README.md b/README.md
index 480b53bab..8e1986ba1 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,6 @@
[![Travis-CI Build Status](https://travis-ci.org/curl/curl.svg?branch=master)](https://travis-ci.org/curl/curl)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/l1vv31029huhf4g4?svg=true)](https://ci.appveyor.com/project/curlorg/curl)
[![Cirrus Build Status](https://api.cirrus-ci.com/github/curl/curl.svg?branch=master)](https://cirrus-ci.com/github/curl/curl)
-[![Coverage Status](https://coveralls.io/repos/github/curl/curl/badge.svg)](https://coveralls.io/github/curl/curl)
[![Backers on Open Collective](https://opencollective.com/curl/backers/badge.svg)](#backers)
[![Sponsors on Open Collective](https://opencollective.com/curl/sponsors/badge.svg)](#sponsors)
[![Language Grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/curl/curl.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/curl/curl/context:cpp)