Revision e61dfadc7393d849130a3974bcf8198c62aaed2f authored by Bryna Hazelton on 13 October 2021, 23:07:43 UTC, committed by kartographer on 14 October 2021, 00:34:01 UTC
1 parent 8d2f8bd
Raw File
test_cover_noinstall.sh
#! /bin/bash

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

# We want to make sure we build the Cython extensions now.
CFLAGS="-DCYTHON_TRACE=1 -DCYTHON_TRACE_NOGIL=1" pip install -e . --no-deps

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