From 1ac1846fdf837fac1c958dfde0ebce3e9531bf87 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 11 Nov 2022 05:39:41 -0500 Subject: feat: complete removal of `[run] note` --- tests/test_config.py | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'tests') diff --git a/tests/test_config.py b/tests/test_config.py index 4afdd1e3..444719fd 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -706,17 +706,6 @@ class ConfigFileTest(UsingModulesMixin, CoverageTest): assert not cov.config.branch assert cov.config.data_file == ".coverage" - def test_note_is_obsolete(self): - self.make_file("main.py", "a = 1") - self.make_file(".coveragerc", """\ - [run] - note = I am here I am here I am here! - """) - cov = coverage.Coverage() - with self.assert_warnings(cov, [r"The '\[run] note' setting is no longer supported."]): - self.start_import_stop(cov, "main") - cov.report() - def test_no_toml_installed_no_toml(self): # Can't read a toml file that doesn't exist. with without_module(coverage.tomlconfig, 'tomllib'): -- cgit v1.2.1