From d89843e13910ace94cbc60b169cce9d1a31579bf Mon Sep 17 00:00:00 2001
From: Federico Busetti <729029+febus982@users.noreply.github.com>
Date: Sun, 28 Jan 2024 17:40:22 +0000
Subject: [PATCH] Remove unnecessary coverage config
---
.idea/runConfigurations/Pytest.xml | 3 ++-
.idea/sqlalchemy-bind-manager.iml | 3 +++
pyproject.toml | 4 ++--
3 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/.idea/runConfigurations/Pytest.xml b/.idea/runConfigurations/Pytest.xml
index 7860786..bcdce78 100644
--- a/.idea/runConfigurations/Pytest.xml
+++ b/.idea/runConfigurations/Pytest.xml
@@ -1,6 +1,7 @@
+
@@ -16,4 +17,4 @@
-
\ No newline at end of file
+
diff --git a/.idea/sqlalchemy-bind-manager.iml b/.idea/sqlalchemy-bind-manager.iml
index 22b1c4b..6ed0e92 100644
--- a/.idea/sqlalchemy-bind-manager.iml
+++ b/.idea/sqlalchemy-bind-manager.iml
@@ -10,4 +10,7 @@
+
+
+
\ No newline at end of file
diff --git a/pyproject.toml b/pyproject.toml
index f13691f..08e48d5 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -76,8 +76,8 @@ testpaths = [
[tool.coverage.run]
branch = true
source = ["sqlalchemy_bind_manager"]
-concurrency = ["multiprocessing"]
-parallel = true
+# It's not necessary to setup concurrency here
+# because pytest-cov takes care of that
[tool.coverage.report]
fail_under = 100