Skip to content
This repository was archived by the owner on Jan 9, 2023. It is now read-only.

Add test coverage with coveralls.io #48

Merged
merged 2 commits into from
Nov 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,12 @@ install:
- conda create -q -n testenv python=${PYTHON} root=${ROOT} rootpy pandas nose
- export CONDA_ENV_PATH=$HOME/miniconda/envs/testenv
- source activate testenv
- pip install coverage coveralls

script: nosetests
#after_success:
# - time coveralls

after_success:
- time coveralls

notifications:
email: false
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@

# root\_pandas

[![Build Status](https://travis-ci.org/scikit-hep/root_pandas.svg?branch=master)](https://travis-ci.org/scikit-hep/root_pandas) [![PyPI](https://badge.fury.io/py/root_pandas.svg)](https://pypi.python.org/pypi/root_pandas/) [![DOI](https://zenodo.org/badge/17171/ibab/root_pandas.svg)](https://zenodo.org/badge/latestdoi/17171/ibab/root_pandas)
[![Build Status](https://travis-ci.org/scikit-hep/root_pandas.svg?branch=master)](https://travis-ci.org/scikit-hep/root_pandas)
[![Coverage Status](https://coveralls.io/repos/github/scikit-hep/root_pandas/badge.svg?branch=master)](https://coveralls.io/github/scikit-hep/root_pandas?branch=master)
[![PyPI](https://badge.fury.io/py/root_pandas.svg)](https://pypi.python.org/pypi/root_pandas/)
[![DOI](https://zenodo.org/badge/17171/ibab/root_pandas.svg)](https://zenodo.org/badge/latestdoi/17171/ibab/root_pandas)

`root_pandas` is a convenience package built around the `root_numpy` library.
It allows you to easily load and store pandas DataFrames using the columnar ROOT data format used in high energy physics.
Expand Down