summaryrefslogtreecommitdiff
path: root/scripts/dev/check_coverage.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/dev/check_coverage.py')
-rw-r--r--scripts/dev/check_coverage.py24
1 files changed, 5 insertions, 19 deletions
diff --git a/scripts/dev/check_coverage.py b/scripts/dev/check_coverage.py
index 912e4cbc4..38a8f6ca1 100644
--- a/scripts/dev/check_coverage.py
+++ b/scripts/dev/check_coverage.py
@@ -1,20 +1,9 @@
#!/usr/bin/env python3
-# Copyright 2015-2021 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
-# This file is part of qutebrowser.
+# SPDX-FileCopyrightText: Florian Bruhin (The Compiler) <mail@qutebrowser.org>
#
-# qutebrowser is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# qutebrowser is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with qutebrowser. If not, see <https://www.gnu.org/licenses/>.
+# SPDX-License-Identifier: GPL-3.0-or-later
+
"""Enforce perfect coverage on some files."""
@@ -134,6 +123,8 @@ PERFECT_FILES = [
'qutebrowser/misc/objects.py'),
('tests/unit/misc/test_throttle.py',
'qutebrowser/misc/throttle.py'),
+ ('tests/unit/misc/test_pakjoy.py',
+ 'qutebrowser/misc/pakjoy.py'),
(None,
'qutebrowser/mainwindow/statusbar/keystring.py'),
@@ -339,10 +330,6 @@ def main_check():
print("or check https://codecov.io/github/qutebrowser/qutebrowser")
print()
- if scriptutils.ON_CI:
- print("Keeping coverage.xml on CI.")
- else:
- os.remove('coverage.xml')
return 1 if messages else 0
@@ -363,7 +350,6 @@ def main_check_all():
'--cov-report', 'xml', test_file], check=True)
with open('coverage.xml', encoding='utf-8') as f:
messages = check(f, [(test_file, src_file)])
- os.remove('coverage.xml')
messages = [msg for msg in messages
if msg.typ == MsgType.insufficient_coverage]