Skip to content

Commit

Permalink
codecov (#126)
Browse files Browse the repository at this point in the history
* codecov

* add cov to travis
  • Loading branch information
koaning authored Apr 29, 2019
1 parent bb4ac63 commit ebcb9b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ install:
- pip install -e .
- pip install .[dev]
script:
- pytest --disable-warnings
- pytest --disable-warnings --cov=sklego
- python -m doctest -v sklego/*.py
- flake8
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ doctest:
python -m doctest -v sklego/*.py

test: doctest
pytest --disable-warnings
pytest --disable-warnings --cov=sklego

check: flake test

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
docs_packages = ["sphinx>=1.8.5", "sphinx_rtd_theme>=0.4.3"]
dev_packages = docs_packages + ["flake8>=3.6.0", "matplotlib>=3.0.2", "pytest>=4.0.2",
"nbval>=0.9.1", "plotnine>=0.5.1", "jupyter>=1.0.0",
"jupyterlab>=0.35.4"]
"jupyterlab>=0.35.4", "pytest-cov>=2.6.1"]


def read(fname):
Expand Down

0 comments on commit ebcb9b9

Please sign in to comment.