From 28c3ef1c7713e62b0ef392c1000d8c0f1d892fcc Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Tue, 28 Aug 2018 14:40:20 -0700 Subject: [PATCH] Use https, save a redirect, fix hostname --- src/_pytest/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_pytest/terminal.py b/src/_pytest/terminal.py index 155a33aca..746d08c47 100644 --- a/src/_pytest/terminal.py +++ b/src/_pytest/terminal.py @@ -691,7 +691,7 @@ class TerminalReporter(object): indented = "\n".join(" " + x for x in lines) self._tw.line(indented) self._tw.line() - self._tw.line("-- Docs: http://doc.pytest.org/en/latest/warnings.html") + self._tw.line("-- Docs: https://docs.pytest.org/en/latest/warnings.html") def summary_passes(self): if self.config.option.tbstyle != "no":