summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authoralimcmaster1 <alimcmaster1@gmail.com>2019-06-07 06:28:33 +0100
committerStefan Behnel <stefan_ml@behnel.de>2019-06-07 07:28:33 +0200
commit3f4024787cf4fb02a97ac02d18b5d6b68b844830 (patch)
treee8fc47dfba5bb1da80f5d7c984e4007192e3a730 /setup.cfg
parent70d770324a230df6a429d82cf8e8187cd34b9709 (diff)
downloadcython-3f4024787cf4fb02a97ac02d18b5d6b68b844830.tar.gz
Move coverage.rc -> setup.cfg to reduce the number of config files (GH-2984)
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg11
1 files changed, 10 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 4ac5ece66..6172638ad 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -13,4 +13,13 @@ ignore =
S001,
# S001 found module formatter
E226,
- # E226 missing whitespace around operator
+ # E226 missing whitespace around operator[run]
+
+[coverage:run]
+branch = True
+parallel = True
+concurrency = multiprocessing,thread
+include = Cython/*
+source = Cython
+omit = Test*
+