Skip to content

Commit

Permalink
Add new ignore paths (#173)
Browse files Browse the repository at this point in the history
* Add new ignore paths

When reviewing the ignore paths in the Node uploader, I found a few that weren't present here. I've updated the file and folder ignore paths to rectify this.

* Black formatting pass
  • Loading branch information
eliatcodecov authored Jul 14, 2023
1 parent 25da9d9 commit 768636a
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions codecov_cli/services/upload/coverage_file_finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"*.exe",
"*.ftl",
"*.gif",
".gitignore",
".git*",
"*.gradle",
"*.gz",
"*.h",
Expand Down Expand Up @@ -130,23 +130,29 @@
"*.map",
"*.egg-info",
".ds_store",
"*.zip",
]


default_folders_to_ignore = [
"vendor",
"bower_components",
".egg-info*",
".circleci",
"conftest_*.c.gcov",
".egg-info*",
".env",
".envs",
".git",
".go",
".hg",
".map",
".marker",
".tox",
".venv",
".venvs",
".virtualenv",
".virtualenvs",
".yarn",
".yarn-cache",
"__pycache__",
"env",
Expand All @@ -158,7 +164,6 @@
"venvs",
"virtualenv",
"virtualenvs",
".circleci",
"jspm_packages",
".nyc_output",
]
Expand Down

0 comments on commit 768636a

Please sign in to comment.