https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 146ecf9ae644cd8081d94f09fa52c6a2e075d10b authored by Matthew Kolopanis on 29 January 2021, 19:01:01 UTC, committed by Paul La Plante on 16 February 2021, 20:13:13 UTC
1 parent fef0301
Raw File
Tip revision: 146ecf9ae644cd8081d94f09fa52c6a2e075d10b authored by Matthew Kolopanis on 29 January 2021, 19:01:01 UTC
set maxvar as a compile time constant
Tip revision: 146ecf9
test_coverage.sh
#! /bin/bash

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

pip install .[test]

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