https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision e8ae5178133d85b9498d50ff4ecba15f32945d9f authored by Nicholas Kern on 30 March 2021, 01:17:29 UTC, committed by Nicholas Kern on 30 March 2021, 01:17:29 UTC
	modified:   pyuvdata/tests/test_utils.py
	modified:   pyuvdata/utils.py
1 parent 89d8358
Raw File
Tip revision: e8ae5178133d85b9498d50ff4ecba15f32945d9f authored by Nicholas Kern on 30 March 2021, 01:17:29 UTC
modified: CHANGELOG.md
Tip revision: e8ae517
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