Skip to content
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
19 changes: 19 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# this file is based on the examples provided on scikit-learn's .coveragerc

[run]
omit =
*/test*
*/__init__.py
source = qiita_client
branch = True
include = */qiita_*/*

[report]
exclude_lines =
pragma: no cover
def __repr__
raise NotImplementedError
if __name__ == .__main__.:
omit =
*/test*
*/__init__.py
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ before_install:
# Update conda itself
- conda update --yes conda
install:
- travis_retry conda create --yes -n env_name python=$PYTHON_VERSION pip nose flake8
- travis_retry conda create --yes -n env_name python=$PYTHON_VERSION pip nose flake8 httpretty coverage
- source activate env_name
- travis_retry pip install .
script:
- nosetests --with-doctest --with-coverage -v; fi
- nosetests --with-doctest --with-coverage
- flake8 qiita_client setup.py
after_success:
- coveralls
5 changes: 5 additions & 0 deletions README.md → README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Qiita Client
============

|Build Status|

Qiita (canonically pronounced *cheetah*) is an analysis environment for microbiome (and other "comparative -omics") datasets.

This package includes the Qiita Client utility library, a library to simplify the communication between the plugins and the Qiita server.

.. |Build Status| image:: https://travis-ci.org/qiita-spots/qiita_client.png?branch=master
:target: https://travis-ci.org/qiita-spots/qiita_client