diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-07-10 08:22:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-10 08:22:09 -0400 |
commit | 6cbd78e000e539bee39375264afdb9f29a89c681 (patch) | |
tree | 10cc750729ae2be5319a11dc5ad29c22c4ce24bf /tests/test_context.py | |
parent | e1e474f5dda602551fbc0cbd30e441e194d9421f (diff) | |
parent | 6b226d85f5191cd27b20ad27caded8b407772a02 (diff) | |
download | python-coveragepy-git-6cbd78e000e539bee39375264afdb9f29a89c681.tar.gz |
Merge branch 'master' into isolate_os
Diffstat (limited to 'tests/test_context.py')
-rw-r--r-- | tests/test_context.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_context.py b/tests/test_context.py index 24e17069..5d40e339 100644 --- a/tests/test_context.py +++ b/tests/test_context.py @@ -18,10 +18,6 @@ from tests.coveragetest import CoverageTest class StaticContextTest(CoverageTest): """Tests of the static context.""" - def setUp(self): - super(StaticContextTest, self).setUp() - self.skip_unless_data_storage_is("sql") - def test_no_context(self): self.make_file("main.py", "a = 1") cov = coverage.Coverage() @@ -115,7 +111,6 @@ class DynamicContextTest(CoverageTest): if not env.C_TRACER: self.skipTest("Only the C tracer supports dynamic contexts") super(DynamicContextTest, self).setUp() - self.skip_unless_data_storage_is("sql") SOURCE = """\ def helper(lineno): |