https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 1f2964accca40f8952b28796c478074459632d2e authored by Matthew Kolopanis on 29 January 2021, 20:43:55 UTC, committed by Paul La Plante on 16 February 2021, 20:13:13 UTC
1 parent 6df77ad
Raw File
Tip revision: 1f2964accca40f8952b28796c478074459632d2e authored by Matthew Kolopanis on 29 January 2021, 20:43:55 UTC
make length of arrays signed long to avoid compilation warngings
Tip revision: 1f2964a
test_cover_noinstall.sh
#! /bin/bash

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

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