diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-05-06 18:26:37 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-05-06 18:26:37 -0700 |
commit | d559304babb24e4961ba13c554817730b46cfadc (patch) | |
tree | e7869ce20b32fcc6ee812a36f083a201fb289781 | |
parent | 1cc585873443a05bd465d333c2d2b84027fff6da (diff) | |
download | chocula-d559304babb24e4961ba13c554817730b46cfadc.tar.gz chocula-d559304babb24e4961ba13c554817730b46cfadc.zip |
pytest config
-rw-r--r-- | pytest.ini | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..755fead --- /dev/null +++ b/pytest.ini @@ -0,0 +1,10 @@ +[pytest] + +# search for 'test_*' functions in all python files, not just under tests +python_files = test_*.py tests/*.py chocula/*.py bin/*.py + +# Eg, warnings in surt library +filterwarnings = + ignore:.*invalid escape seq.*:DeprecationWarning + +log_level = INFO |