From 4b368ef5d2e41f879e5d8c697495c408f96f8673 Mon Sep 17 00:00:00 2001 From: Curtis Stallings Date: Mon, 29 Aug 2022 13:54:06 -0500 Subject: [PATCH 1/2] BAT File to run through multiple python versions --- test/run_versions.bat | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/run_versions.bat diff --git a/test/run_versions.bat b/test/run_versions.bat new file mode 100644 index 0000000..66eda8b --- /dev/null +++ b/test/run_versions.bat @@ -0,0 +1,2 @@ +@echo on +pyenv shell 3.6.8 & python3 -m pytest test_tabular.py & pyenv shell 3.7.9 & python3 -m pytest test_tabular.py & pyenv shell 3.8.9 & python3 -m pytest test_tabular.py & pyenv shell 3.9.13 & python3 -m pytest test_tabular.py & pyenv shell 3.10.6 & python3 -m pytest test_tabular.py & pause & pause \ No newline at end of file From 545d75e4eadf3c58c8629f16b265874f676b410c Mon Sep 17 00:00:00 2001 From: Curtis Stallings Date: Mon, 29 Aug 2022 13:54:24 -0500 Subject: [PATCH 2/2] Adding -vv for pytest default options --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b12b0b0..0ae510f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,4 +36,5 @@ include-package-data = true "*" = ["*.dll"] [tool.pytest.ini_options] -filterwarnings = ["ignore::DeprecationWarning"] \ No newline at end of file +filterwarnings = ["ignore::DeprecationWarning"] +addopts = "-vv" \ No newline at end of file