Skip to content

Commit

Permalink
codecov: Don't run coverage on unreasonable files
Browse files Browse the repository at this point in the history
This should make less PRs red, like when it's hard to get coverage.
  • Loading branch information
Tarrasch authored Mar 13, 2018
1 parent 7c6b973 commit 9735b5a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ coverage:
if_no_uploads: error

changes: true # Just copied from default

ignore:
- "examples/"
- "luigi/tools" # These are tested as actual run commands without coverage
# And the list of all Task types that are tested on cluster
- "luigi/contrib/gcs.py"
- "luigi/contrib/bigquery.py"
- "luigi/contrib/bigquery_avro.py"
- "luigi/contrib/hdfs/"
- "luigi/contrib/hadoop.py"
- "luigi/contrib/mrrunner.py"

# For luigi we do not want any comments
comment: false

1 comment on commit 9735b5a

@Tarrasch
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought of #2376, where the Google Cloud tests are not run on (external) pull requests.

Please sign in to comment.