https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision bf14602793ea3608ddf491510a65738af20a7c18 authored by Garrett "Karto" Keating on 09 August 2021, 21:29:22 UTC, committed by Garrett "Karto" Keating on 09 August 2021, 21:29:22 UTC
1 parent 634795f
Raw File
Tip revision: bf14602793ea3608ddf491510a65738af20a7c18 authored by Garrett "Karto" Keating on 09 August 2021, 21:29:22 UTC
Fixing indexing bug for ms writer w/ data, flags, and nsamples arrays
Tip revision: bf14602
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