From b9e19fb2be8a0233ad1d2adc26695307f9fdb392 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Wed, 8 Apr 2020 11:52:52 +0200 Subject: [PATCH] config.sh/custom.sh: Sync with template --- .travis/config.sh | 6 ++++++ .travis/custom.sh | 7 ------- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.travis/config.sh b/.travis/config.sh index 85040b2..c1262bb 100644 --- a/.travis/config.sh +++ b/.travis/config.sh @@ -33,10 +33,16 @@ # - RUN_BLACK_INCLUDE # - RUN_BLACK_EXCLUDE # - RUN_BLACK_DISABLED +# - RUN_BLACK_EXTRA_ARGS # # * .travis/runflake8.sh: # # - RUN_FLAKE8_DISABLED +# - RUN_FLAKE8_EXTRA_ARGS +# +# * .travis/runsyspycmd.sh: +# +# - function lsr_runsyspycmd_hook # # * .travis/runpytest.sh: # diff --git a/.travis/custom.sh b/.travis/custom.sh index 91eabbe..9a1738b 100755 --- a/.travis/custom.sh +++ b/.travis/custom.sh @@ -1,17 +1,10 @@ #!/bin/bash # SPDX-License-Identifier: MIT -# This script is executed with two arguments passed to it: -# -# $1 - path to environment python (python used inside virtual environment -# created by tox) -# $2 - path to system python (python 3.x installed on the system) - set -e ME=$(basename $0) SCRIPTDIR=$(readlink -f $(dirname $0)) -TOPDIR=$(readlink -f ${SCRIPTDIR}/..) . ${SCRIPTDIR}/utils.sh . ${SCRIPTDIR}/config.sh