diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-24 21:03:16 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-24 21:03:16 -0400 |
commit | 7b5457967f256696d3b6c936e81436aa60b4b409 (patch) | |
tree | 6cc4e2517a408a730a525c4ee98ad38f3a532cff /coverage/config.py | |
parent | 2eb5fe3be624d8f970d0394d32a1f2fa148a9372 (diff) | |
download | python-coveragepy-git-7b5457967f256696d3b6c936e81436aa60b4b409.tar.gz |
"concurrency" is a better name that "coroutine"
--HG--
rename : tests/test_coroutine.py => tests/test_concurrency.py
Diffstat (limited to 'coverage/config.py')
-rw-r--r-- | coverage/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/config.py b/coverage/config.py index c671ef75..44bf3930 100644 --- a/coverage/config.py +++ b/coverage/config.py @@ -140,7 +140,7 @@ class CoverageConfig(object): # Defaults for [run] self.branch = False - self.coroutine = None + self.concurrency = None self.cover_pylib = False self.data_file = ".coverage" self.parallel = False @@ -235,7 +235,7 @@ class CoverageConfig(object): # [run] ('branch', 'run:branch', 'boolean'), - ('coroutine', 'run:coroutine'), + ('concurrency', 'run:concurrency'), ('cover_pylib', 'run:cover_pylib', 'boolean'), ('data_file', 'run:data_file'), ('debug', 'run:debug', 'list'), |