Skip to content

Commit

Permalink
Disable CARGO_INCREMENTAL to fix coverage build
Browse files Browse the repository at this point in the history
  • Loading branch information
ctz committed Mar 13, 2018
1 parent 7b5396d commit 299d818
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion admin/coverage
Expand Up @@ -31,7 +31,8 @@ def rustc(*args):
exe = [cargo(), 'rustc', '--all-features'] + list(args)
env = dict(os.environ)
env.update(RUSTC_WRAPPER = './admin/coverage-rustc',
COVERAGE_OPTIONS = COVERAGE_OPTIONS)
COVERAGE_OPTIONS = COVERAGE_OPTIONS,
CARGO_INCREMENTAL = '0')
subprocess.check_call(exe, env = env)

def lcov(outfile):
Expand Down

0 comments on commit 299d818

Please sign in to comment.