https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 570e2689c9ab8baadd7397000ae96ca1e5818f78 authored by Bryna Hazelton on 03 December 2020, 22:08:31 UTC, committed by Matthew Kolopanis on 04 December 2020, 16:28:38 UTC
1 parent f741501
Raw File
Tip revision: 570e2689c9ab8baadd7397000ae96ca1e5818f78 authored by Bryna Hazelton on 03 December 2020, 22:08:31 UTC
try to fix conflict in hera_qm conda environment
Tip revision: 570e268
test_coverage.sh
#! /bin/bash

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

pip install .[test]

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