Revision 57ff49661155427add795b0ccb3229325c23e189 authored by pyxieloustar on 11 March 2021, 20:33:05 UTC, committed by pyxieloustar on 11 May 2021, 15:36:42 UTC
1 parent f2e1872
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