aboutsummaryrefslogtreecommitdiffstats
path: root/codecov.yml
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-06-03 13:49:54 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-06-03 07:49:54 -1000
commit84a634c1e7645970382a3a271dfae9ef95685e7a (patch)
treea949f911ba415b11f6ad9854525615d27754633f /codecov.yml
parent42b25718476e80647d4c3a6d1691f280139bd078 (diff)
downloadcryptography-84a634c1e7645970382a3a271dfae9ef95685e7a.tar.gz
cryptography-84a634c1e7645970382a3a271dfae9ef95685e7a.tar.bz2
cryptography-84a634c1e7645970382a3a271dfae9ef95685e7a.zip
Attempted workaround for intermittent coverage issues (#3661)
The root cause is https://bitbucket.org/ned/coveragepy/issues/578/incomplete-file-path-in-xml-report
Diffstat (limited to 'codecov.yml')
-rw-r--r--codecov.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/codecov.yml b/codecov.yml
index 2bfc815b..02362798 100644
--- a/codecov.yml
+++ b/codecov.yml
@@ -7,3 +7,12 @@ coverage:
project:
default:
target: '100'
+
+# Workaround for
+# https://bitbucket.org/ned/coveragepy/issues/578/incomplete-file-path-in-xml-report
+fixes:
+ # Label all the files with a `tests/` prefix.
+ - "::tests/"
+ # Move things with a `tests/src/cryptography` prefix back to
+ # `src/cryptography/`
+ - "tests/src/cryptography/::src/cryptography/"