Skip to content
Snippets Groups Projects
run-travis-ci.sh 579 B
#! /bin/bash

# before_script
if [[ $Flake8 == true ]]; then
  curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/prepare-and-run-flake8.sh
fi

if [[ $Mypy == true ]]; then
  curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/prepare-and-run-mypy.sh
fi

# run ci according to env variables
if [[ $PY == true ]]; then
  . ./run-tests-for-ci.sh
elif [[ $Mypy == true ]]; then
  . ./prepare-and-run-mypy.sh python3.6 mypy==0.521 typed-ast==1.0.4
elif [[ $Flake8 == true ]]; then
  . ./prepare-and-run-flake8.sh relate course accounts tests bin
fi