https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 6a84ce22af3d28214180118c0a68fa9e503b3708 authored by Bryna Hazelton on 14 July 2021, 15:53:34 UTC, committed by Paul La Plante on 30 September 2021, 17:35:20 UTC
1 parent 2924c62
Raw File
Tip revision: 6a84ce22af3d28214180118c0a68fa9e503b3708 authored by Bryna Hazelton on 14 July 2021, 15:53:34 UTC
updates to make tests pass after rebase
Tip revision: 6a84ce2
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