fixed cargo --all-features flag in tests

This commit is contained in:
Eugene Pankov 2023-01-08 21:25:18 +01:00
parent 399f811283
commit 406a6e171f
No known key found for this signature in database
GPG key ID: 5896FCBBDD1CF4F4

View file

@ -280,7 +280,7 @@ def processes(ctx, report_generation):
def report_generation():
# subprocess.call(['cargo', 'llvm-cov', 'clean', '--workspace'])
subprocess.check_call(
["cargo", "llvm-cov", "run", "--no-report", "--", "--version"], cwd=cargo_root
["cargo", "llvm-cov", "run", "--all-features", "--no-report", "--", "--version"], cwd=cargo_root
)
yield
# subprocess.check_call(['cargo', 'llvm-cov', '--no-run', '--hide-instantiations', '--html'], cwd=cargo_root)