commit: cf3fce5e62bf71d8d675bf72530ba8872bb8b8d7 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org> AuthorDate: Wed Mar 8 00:16:36 2017 +0000 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org> CommitDate: Wed Mar 8 00:16:36 2017 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=cf3fce5e
ekeyword: make pytest work out of the box .gitignore | 1 + src/ekeyword/pytest.ini | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 49a360b..8022697 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ +.coverage *.pyc src/echangelog/echangelog.1 diff --git a/src/ekeyword/pytest.ini b/src/ekeyword/pytest.ini new file mode 100644 index 0000000..622c9d8 --- /dev/null +++ b/src/ekeyword/pytest.ini @@ -0,0 +1,3 @@ +[pytest] +addopts = --cov +python_files = *_unittest.py
