1#!/bin/bash 2 3source activate $CONDA_ENV 4 5# Make sure any error below is reported as such 6set -v -e 7 8if [ "$RUN_COVERAGE" == "yes" ]; then codecov; coveralls; fi 9 10