From 5ea6d81c935ac413c3812d5c057f444f5277b160 Mon Sep 17 00:00:00 2001 From: mfaisyal Date: Sat, 24 Sep 2022 22:46:40 +0700 Subject: [PATCH] add pytest config --- pytest.ini | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 00000000..5e07e90b --- /dev/null +++ b/pytest.ini @@ -0,0 +1,19 @@ +[pytest] + +python_files = test_* +python_classes = *Test +python_functions = test_* + +filterwarnings = + ignore::DeprecationWarning + + +markers = + api: test all end-user api + speech: testing speech api + movement: testing movement api + facial: testing facial api + acoustic: testing acoustic api + docker: testing api that using docker + non_docker: testing api that not using docker + debug1: debug1 \ No newline at end of file