From 0d4b7a17daa1324607e727e1c86ecf2595545ab3 Mon Sep 17 00:00:00 2001 From: Yalin Date: Thu, 19 Oct 2023 22:50:39 -0400 Subject: [PATCH] add pytest config --- pytest.ini | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..41c40d9 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,22 @@ +[pytest] +doctest_optionflags = + ELLIPSIS + NUMBER + NORMALIZE_WHITESPACE + IGNORE_EXCEPTION_DETAIL +addopts = + --doctest-modules + --doctest-continue-on-failure + --ignore='setup.py' +norecursedirs = + build + dist + .egg-info + .cache + .git + htmlcov + legacy_files + notebooks + tmps + **/.ipynb_checkpoints +filterwarnings = ignore \ No newline at end of file