From f2aa3695d79fb97fa47cbad1816e8d9173bc507a Mon Sep 17 00:00:00 2001 From: jenisys Date: Sun, 30 Jun 2013 13:09:13 +0200 Subject: [PATCH] Add pytest.ini to run unittest without args, ala: py.test --- pytest.ini | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..884f0f1 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,17 @@ +# ============================================================================ +# PYTEST CONFIGURATION FILE +# ============================================================================ +# NOTE: +# Can also be defined in in tox.ini or pytest.ini file. +# +# SEE ALSO: +# * http://pytest.org/ +# * http://pytest.org/customize.html +# * http://pytest.org/example/pythoncollection.html#change-naming-conventions +# ============================================================================ + +[pytest] +minversion = 2.0 +norecursedirs= .git .hg .tox build dist tmp* +python_files = test*.py +