From 2eaf4caf9ed3c14b856479594a74e901b6781f2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Voigt?= Date: Fri, 22 Jan 2021 19:51:55 +0100 Subject: [PATCH] Add config files for pytest and coverage --- .coveragerc | 7 +++++++ pytest.ini | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 .coveragerc create mode 100644 pytest.ini diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..97506a1 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,7 @@ +[run] +branch = True +cover_pylib = False +source = salted + +[html] +title = Coverage Report for the salted Python Package \ No newline at end of file diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..cd1fa68 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,3 @@ +# content of pytest.ini +[pytest] +console_output_style = classic