"Ignore paths" not working with custom Codecov config file location #1465
Labels
Area: Report Upload
Issues with pre-ingest report uploading
bug
Something isn't working
Medium
Medium Priority Issues (to be fixed or re-evaluated in 3 months
With these lines in our GitHub actions workflow, we report our test coverage to codecov.
Note that we're using
codecov_yml_path
to refer to a custom location of thecodecov.yml
file inside a.config/
folder. The file is recognized as can be seen in the last GitHub Actions run here:Inside the
.config/codecov.yml
file, we specify that thespec/
folder should be ignored entirely by codecov as we don't want our test files themselves to contribute to the coverage statistics.However, in the codecov dashboard, we still see the
spec/
folder and all of its contents in the code tree.Some questions
../spec/**/*
or./spec/**/*
when a custom location for thecodecov.yml
file is set up. Both variants don't seem to work for us. Maybe it's something obvious that I can't see?coverage.xml
only contain results that are not ignored by Codecov? Or is Codecov smart enough to filter this according to theignore
key in thecodecov.yml
file?The text was updated successfully, but these errors were encountered: