From: Simon McVittie Date: Tue, 10 Jan 2017 14:48:31 +0000 (+0000) Subject: t/html.t: skip if running installed X-Git-Tag: debian/3.20141016.4~5 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/8d4012206b08c05f08e419b24ee3ab06245d90d6 t/html.t: skip if running installed This test was already deleted from git master by the time we added installed-tests support there. --- diff --git a/t/html.t b/t/html.t index 84c561fa8..3933ab7ea 100755 --- a/t/html.t +++ b/t/html.t @@ -6,6 +6,8 @@ use Test::More; my @pages; BEGIN { + plan(skip_all => 'running installed') if $ENV{INSTALLED_TESTS}; + @pages=qw(index features news plugins/map security); if (system("command -v validate >/dev/null") != 0) { plan skip_all => "html validator not present";