From 60689d9014b807e9e29452a7edb22a6723eafa82 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 17 Mar 2019 23:39:38 +0200 Subject: [PATCH] Disable emojis and animated output in CI Makes for cleaner logs. See: https://docs.travis-ci.com/user/environment-variables/ See: https://man.sr.ht/builds.sr.ht/manifest.md --- .build.yml | 3 +++ .travis.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.build.yml b/.build.yml index 285cfc1..3221823 100644 --- a/.build.yml +++ b/.build.yml @@ -19,3 +19,6 @@ tasks: - test: | cd dspace-statistics-api pipenv run pytest +environment: + PIPENV_NOSPIN: 'True' + PIPENV_HIDE_EMOJIS: 'True' diff --git a/.travis.yml b/.travis.yml index b958949..3eb6d64 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,5 +16,8 @@ install: - "pip install pipenv --upgrade-strategy=only-if-needed" - "pipenv install --dev" script: pytest +env: + - PIPENV_NOSPIN=True + - PIPENV_HIDE_EMOJIS=True # vim: ts=2 sw=2 et