From 5ebdb8930827a1e2640eb41f1e79cbf773e826f2 Mon Sep 17 00:00:00 2001 From: Matthew Jennings Date: Thu, 4 Apr 2024 22:10:33 +1030 Subject: [PATCH] Add _init__.py to tests dir for coverage to work Add .coveragerc for compatibility with pytest-xdist. --- .coveragerc | 3 +++ test/__init__.py | 0 2 files changed, 3 insertions(+) create mode 100644 .coveragerc create mode 100644 test/__init__.py diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 00000000..4a3bb9d4 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,3 @@ +[run] +concurrency = multiprocessing +parallel = true \ No newline at end of file diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 00000000..e69de29b