diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-27 10:26:34 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-27 10:26:34 -0400 |
commit | 032923e64a98277b13670382cd4324cf1a22438e (patch) | |
tree | 8113bf849aa000e1756fcfec5879c0db4954eff5 /tests/test_process.py | |
parent | c977402a9c209a9c3ab07e58bcff409c673edd98 (diff) | |
download | python-coveragepy-git-032923e64a98277b13670382cd4324cf1a22438e.tar.gz |
SQLite storage detects forks
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 1ac18ffe..6174b9f7 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -515,8 +515,6 @@ class ProcessTest(CoverageTest): def test_fork(self): if not hasattr(os, 'fork'): self.skipTest("Can't test os.fork since it doesn't exist.") - # See https://nedbatchelder.com/blog/201808/sqlite_data_storage_for_coveragepy.html - self.skip_unless_data_storage_is("json") self.make_file("fork.py", """\ import os |