Revision c9a7b2062aa517fd161aedba02f9d5b4d7532fe5 authored by pyxieloustar on 09 September 2021, 00:09:29 UTC, committed by pyxieloustar on 09 September 2021, 00:11:08 UTC
1 parent 2910859
Raw File
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