From 6f26e5e385281635705be6f8bdee53ccd9f946ed Mon Sep 17 00:00:00 2001 From: Alex Knauth Date: Mon, 4 Jul 2016 17:04:24 -0400 Subject: [PATCH 1/2] install cover and cover-coveralls separately for travis builds --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index 282e07d..5ae2476 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,11 +5,17 @@ env: - RACKET_DIR=~/racket matrix: - RACKET_VERSION=6.1.1 + - RACKET_VERSION=6.2 + - RACKET_VERSION=6.2.1 + - RACKET_VERSION=6.3 + - RACKET_VERSION=6.4 + - RACKET_VERSION=6.5 before_install: - git clone https://github.com/greghendershott/travis-racket.git ../travis-racket - cat ../travis-racket/install-racket.sh | bash - export PATH="${RACKET_DIR}/bin:${PATH}" + - raco pkg install --deps search-auto cover cover-coveralls install: raco pkg install --deps search-auto $TRAVIS_BUILD_DIR # install dependencies From 00b034517c0504c3fdd3d5b9d57b418b7ed51784 Mon Sep 17 00:00:00 2001 From: Alex Knauth Date: Mon, 4 Jul 2016 17:07:07 -0400 Subject: [PATCH 2/2] remove dependency on cover, add cover-omit-paths declaration --- info.rkt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/info.rkt b/info.rkt index 1460d9a..6112eff 100644 --- a/info.rkt +++ b/info.rkt @@ -2,8 +2,11 @@ (define collection 'multi) (define deps '("base" "rackunit-lib" "scribble-lib" "racket-index")) -(define build-deps '("cover" - "cover-coveralls" - "scribble-lib" +(define build-deps '("scribble-lib" "rackunit-lib" "racket-doc")) + +(define cover-omit-paths + '(#rx".*\\.scrbl" + #rx"info\\.rkt" + ))