diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-07-09 16:22:51 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-07-10 06:57:24 -0400 |
commit | 6b226d85f5191cd27b20ad27caded8b407772a02 (patch) | |
tree | a7d2e58246fb5ef9b8128ff342e97968c4ace853 /tests/test_context.py | |
parent | 9bc6b93805a5f20a87211a315d00503eddab66dc (diff) | |
download | python-coveragepy-git-6b226d85f5191cd27b20ad27caded8b407772a02.tar.gz |
Remove the JSON data code
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): |