From f86460a352375b7156e21ce9a5f656697abd0ab8 Mon Sep 17 00:00:00 2001 From: David Riazati Date: Wed, 7 Jul 2021 14:57:54 -0700 Subject: [PATCH] Add coverage files to .gitignore (#61144) Summary: Fixes failures when coverage is turned on: https://github.com/pytorch/pytorch/runs/2966295169 https://github.com/pytorch/pytorch/runs/2964409741 Pull Request resolved: https://github.com/pytorch/pytorch/pull/61144 Test Plan: ```bash $ echo hi > test/.coverage.jit.1625168654.4504092 $ git status $ ``` Reviewed By: zhouzhuojie Differential Revision: D29530709 Pulled By: driazati fbshipit-source-id: 0e6a1cb217c4d48f14c0c58a546f98393d2b0392 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 89f139cc18d526..b0beb080646e4f 100644 --- a/.gitignore +++ b/.gitignore @@ -309,3 +309,6 @@ core.* # Generated if you use the pre-commit script for clang-tidy pr.diff + +# coverage files +*/**/.coverage.*