Skip to content

Commit

Permalink
Merge 4274f15 into 949cd56
Browse files Browse the repository at this point in the history
  • Loading branch information
bjk17 committed Jun 5, 2019
2 parents 949cd56 + 4274f15 commit 390c929
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .travis.yml
Expand Up @@ -11,5 +11,15 @@ python:
- 'nightly'
- 'pypy3.5'

install:
- pip install --upgrade pip
- pip install coveralls==1.7.0

script:
- ./setup.py test

after_success:
- coveralls

notifications:
email: false
3 changes: 3 additions & 0 deletions README.rst
Expand Up @@ -3,6 +3,9 @@ Combinatorial Specification Searcher
.. image:: https://travis-ci.org/PermutaTriangle/comb_spec_searcher.svg?branch=master
:alt: Travis
:target: https://travis-ci.org/PermutaTriangle/comb_spec_searcher
.. image:: https://img.shields.io/coveralls/github/PermutaTriangle/comb_spec_searcher.svg
:alt: Coveralls
:target: https://coveralls.io/github/PermutaTriangle/comb_spec_searcher
.. image:: https://img.shields.io/pypi/v/comb_spec_searcher.svg
:alt: PyPI
:target: https://pypi.python.org/pypi/comb_spec_searcher
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -2,7 +2,7 @@
test=pytest

[tool:pytest]
addopts = --verbose --pep8 --isort
addopts = --pep8 --isort --cov=comb_spec_searcher --cov-report=term-missing
testpaths = comb_spec_searcher test_readme.txt

[tool:isort]
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -49,6 +49,7 @@ def read(fname):
setup_requires=['pytest-runner'],
tests_require=[
'pytest',
'pytest-cov',
'pytest-isort',
'pytest-pep8',
'docutils-python3',
Expand Down

0 comments on commit 390c929

Please sign in to comment.