https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision ead292e77328a16f6ed514d46b5c3ac538e013d9 authored by Bryna Hazelton on 23 September 2021, 16:17:48 UTC, committed by Matthew Kolopanis on 28 September 2021, 18:46:02 UTC
1 parent ab4a44a
Raw File
Tip revision: ead292e77328a16f6ed514d46b5c3ac538e013d9 authored by Bryna Hazelton on 23 September 2021, 16:17:48 UTC
Add an option to flip the gain conjugation convention in uvcalibrate
Tip revision: ead292e
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