diff options
-rw-r--r-- | tests/farm/annotate/gold/white.py,cover | 3 | ||||
-rw-r--r-- | tests/farm/annotate/gold_anno_dir/a_a.py,cover | 3 | ||||
-rw-r--r-- | tests/farm/annotate/gold_anno_dir/b_b.py,cover | 3 | ||||
-rw-r--r-- | tests/farm/annotate/gold_anno_dir/multi.py,cover | 3 | ||||
-rw-r--r-- | tests/farm/annotate/gold_encodings/utf8.py,cover | 3 | ||||
-rw-r--r-- | tests/farm/annotate/gold_multi/a/a.py,cover | 3 | ||||
-rw-r--r-- | tests/farm/annotate/gold_multi/b/b.py,cover | 3 | ||||
-rw-r--r-- | tests/farm/annotate/gold_multi/multi.py,cover | 3 | ||||
-rw-r--r-- | tests/test_annotate.py | 15 |
9 files changed, 0 insertions, 39 deletions
diff --git a/tests/farm/annotate/gold/white.py,cover b/tests/farm/annotate/gold/white.py,cover index b190ffdb..36b0b993 100644 --- a/tests/farm/annotate/gold/white.py,cover +++ b/tests/farm/annotate/gold/white.py,cover @@ -1,6 +1,3 @@ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - # A test case sent to me by Steve White > def f(self): diff --git a/tests/farm/annotate/gold_anno_dir/a_a.py,cover b/tests/farm/annotate/gold_anno_dir/a_a.py,cover index 0bd0f4a5..d0ff3c0c 100644 --- a/tests/farm/annotate/gold_anno_dir/a_a.py,cover +++ b/tests/farm/annotate/gold_anno_dir/a_a.py,cover @@ -1,6 +1,3 @@ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - > def a(x): > if x == 1: > print("x is 1") diff --git a/tests/farm/annotate/gold_anno_dir/b_b.py,cover b/tests/farm/annotate/gold_anno_dir/b_b.py,cover index 49f723ac..90d076f1 100644 --- a/tests/farm/annotate/gold_anno_dir/b_b.py,cover +++ b/tests/farm/annotate/gold_anno_dir/b_b.py,cover @@ -1,6 +1,3 @@ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - > def b(x): > msg = "x is %s" % x > print(msg) diff --git a/tests/farm/annotate/gold_anno_dir/multi.py,cover b/tests/farm/annotate/gold_anno_dir/multi.py,cover index 980f4793..2a5c59ce 100644 --- a/tests/farm/annotate/gold_anno_dir/multi.py,cover +++ b/tests/farm/annotate/gold_anno_dir/multi.py,cover @@ -1,6 +1,3 @@ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - > import a.a > import b.b diff --git a/tests/farm/annotate/gold_encodings/utf8.py,cover b/tests/farm/annotate/gold_encodings/utf8.py,cover index 0bd26415..6dbf7e0d 100644 --- a/tests/farm/annotate/gold_encodings/utf8.py,cover +++ b/tests/farm/annotate/gold_encodings/utf8.py,cover @@ -1,7 +1,4 @@ # -*- coding: utf-8 -*- - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - # This comment has an accent: é > print("spam eggs") diff --git a/tests/farm/annotate/gold_multi/a/a.py,cover b/tests/farm/annotate/gold_multi/a/a.py,cover index 95f0d8c5..fb3f5435 100644 --- a/tests/farm/annotate/gold_multi/a/a.py,cover +++ b/tests/farm/annotate/gold_multi/a/a.py,cover @@ -1,6 +1,3 @@ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - > def a(x): > if x == 1: > print "x is 1" diff --git a/tests/farm/annotate/gold_multi/b/b.py,cover b/tests/farm/annotate/gold_multi/b/b.py,cover index 18240bf0..a3f5daec 100644 --- a/tests/farm/annotate/gold_multi/b/b.py,cover +++ b/tests/farm/annotate/gold_multi/b/b.py,cover @@ -1,5 +1,2 @@ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - > def b(x): > print "x is %s" % x diff --git a/tests/farm/annotate/gold_multi/multi.py,cover b/tests/farm/annotate/gold_multi/multi.py,cover index 980f4793..2a5c59ce 100644 --- a/tests/farm/annotate/gold_multi/multi.py,cover +++ b/tests/farm/annotate/gold_multi/multi.py,cover @@ -1,6 +1,3 @@ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - > import a.a > import b.b diff --git a/tests/test_annotate.py b/tests/test_annotate.py index 634c1c14..5b275f93 100644 --- a/tests/test_annotate.py +++ b/tests/test_annotate.py @@ -14,9 +14,6 @@ class AnnotationGoldTest1(CoverageTest): def make_multi(self): self.make_file("multi.py", """\ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - import a.a import b.b @@ -25,9 +22,6 @@ class AnnotationGoldTest1(CoverageTest): """) self.make_file("a/__init__.py") self.make_file("a/a.py", """\ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - def a(x): if x == 1: print("x is 1") @@ -36,9 +30,6 @@ class AnnotationGoldTest1(CoverageTest): """) self.make_file("b/__init__.py") self.make_file("b/b.py", """\ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - def b(x): msg = "x is %s" % x print(msg) @@ -63,9 +54,6 @@ class AnnotationGoldTest1(CoverageTest): def test_encoding(self): self.make_file("utf8.py", """\ # -*- coding: utf-8 -*- - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - # This comment has an accent: é print("spam eggs") @@ -77,9 +65,6 @@ class AnnotationGoldTest1(CoverageTest): def test_white(self): self.make_file("white.py", """\ - # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 - # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt - # A test case sent to me by Steve White def f(self): |