https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 9012fe8b61564c643f6a074128c96c8372fc69f6 authored by Josh Dillon on 21 April 2020, 22:04:07 UTC, committed by Matthew Kolopanis on 27 April 2020, 16:00:51 UTC
1 parent 5106289
Raw File
Tip revision: 9012fe8b61564c643f6a074128c96c8372fc69f6 authored by Josh Dillon on 21 April 2020, 22:04:07 UTC
pass --> continue
Tip revision: 9012fe8
test_coverage.sh
#! /bin/bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR/..

python setup.py install

cd pyuvdata/tests
python -m pytest --cov=pyuvdata --cov-config=../../.coveragerc\
       --cov-report term --cov-report html:cover \
       "$@"
back to top