Remove integration test for manpage

This commit is contained in:
Alexander Neumann 2017-09-26 13:16:55 +02:00
parent 4de938d97a
commit 77c07bfd19
2 changed files with 1 additions and 15 deletions

View file

@ -280,14 +280,6 @@ func (env *TravisEnvironment) RunTests() error {
return err
}
if err := run("./restic", "manpage", "--output-dir", manpath); err != nil {
return err
}
if err := run("diff", "-aur", filepath.Join("doc/man"), manpath); err != nil {
return fmt.Errorf("========== man pages are not up to date\nplease run `restic manpage --output-dir doc/man`\n%v", err)
}
return nil
}