https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 237be07ed0d0aadd50be8fd0ad63cf6bb7189c89 authored by Garrett "Karto" Keating on 16 June 2021, 20:46:47 UTC, committed by Paul La Plante on 25 June 2021, 14:49:40 UTC
1 parent 3d5af11
Raw File
Tip revision: 237be07ed0d0aadd50be8fd0ad63cf6bb7189c89 authored by Garrett "Karto" Keating on 16 June 2021, 20:46:47 UTC
Fixing up UVH5 comments and catalog handling based on review comments
Tip revision: 237be07
test_coverage.sh
#! /bin/bash

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

CFLAGS="-DCYTHON_TRACE=1 -DCYTHON_TRACE_NOGIL=1" pip install .[test]

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