summaryrefslogtreecommitdiff
path: root/coverage/html.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-06-17 20:39:22 -0400
committerNed Batchelder <ned@nedbatchelder.com>2019-06-17 20:40:37 -0400
commit21bb447e266831ed44388d9fb9a5327effddee19 (patch)
tree47c185aca31f2ac2af17dcb9bd80cae67c14f9fe /coverage/html.py
parente463e440c52fd5a7073799397a963f43bcb47aaa (diff)
downloadpython-coveragepy-git-21bb447e266831ed44388d9fb9a5327effddee19.tar.gz
Remove ShiningPanda hack
Diffstat (limited to 'coverage/html.py')
-rw-r--r--coverage/html.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/coverage/html.py b/coverage/html.py
index a5aed350..0ad56063 100644
--- a/coverage/html.py
+++ b/coverage/html.py
@@ -421,13 +421,6 @@ class IncrementalChecker(object):
with open(status_file, "w") as fout:
json.dump(status, fout, separators=(',', ':'))
- # Older versions of ShiningPanda look for the old name, status.dat.
- # Accommodate them if we are running under Jenkins.
- # https://issues.jenkins-ci.org/browse/JENKINS-28428
- if "JENKINS_URL" in os.environ:
- with open(os.path.join(self.directory, "status.dat"), "w") as dat:
- dat.write("https://issues.jenkins-ci.org/browse/JENKINS-28428\n")
-
def check_global_data(self, *data):
"""Check the global data that can affect incremental reporting."""
m = Hasher()