From 54667cd08ba810f702e5c7ea060d20248847a1b9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= <georges.duperon@gmail.com>
Date: Wed, 19 Apr 2017 14:42:53 +0200
Subject: [PATCH] Skip doc-coverage on 6.3, as it is not compatible with 6.3
 anymore

---
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 49a9934..6c024d4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,7 +19,7 @@ env:
 
 before_install:
 - curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash
-- raco pkg install --deps search-auto doc-coverage cover cover-codecov # or cover-coveralls
+- if test $RACKET_VERSION = 6.3; then raco pkg install --deps search-auto cover cover-codecov; else raco pkg install --deps search-auto doc-coverage cover cover-codecov; fi
 
 install:
 - raco pkg install --deps search-auto -j 2
@@ -27,7 +27,7 @@ install:
 script:
 - raco test -x -p "$(basename "$TRAVIS_BUILD_DIR")"
 - raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(basename "$TRAVIS_BUILD_DIR")"
-- raco doc-coverage -s "(expand-for-clause|for-clause-syntax-protect|syntax-pattern-variable\?)" "$(basename "$TRAVIS_BUILD_DIR")"
+- if test $RACKET_VERSION != 6.3; then raco doc-coverage -s "(expand-for-clause|for-clause-syntax-protect|syntax-pattern-variable\?)" "$(basename "$TRAVIS_BUILD_DIR")"; fi
 - raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true
 # TODO: add an option to cover to run the "outer" module too, not just the submodules.
 # TODO: deploy the coverage info.
\ No newline at end of file