File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ win32-build
130
130
test /config.ini
131
131
test /cache /*
132
132
test /.mypy_cache /
133
+ test /lint /test_runner /target /
133
134
134
135
! src /leveldb * /Makefile
135
136
Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ clean-docs:
338
338
clean-local : clean-docs
339
339
rm -rf coverage_percent.txt test_bitcoin.coverage/ total.coverage/ fuzz.coverage/ test/tmp/ cache/ $(OSX_APP )
340
340
rm -rf test/functional/__pycache__ test/functional/test_framework/__pycache__ test/cache share/rpcauth/__pycache__
341
- rm -rf osx_volname dist/
341
+ rm -rf osx_volname dist/ test/lint/test_runner/target/ test/lint/__pycache__
342
342
343
343
test-security-check :
344
344
if TARGET_DARWIN
Original file line number Diff line number Diff line change @@ -16,7 +16,11 @@ result is cached and it prevents issues when the image changes.
16
16
test runner
17
17
===========
18
18
19
- To run all the lint checks in the test runner outside the docker, use:
19
+ To run all the lint checks in the test runner outside the docker you first need
20
+ to install the rust toolchain using your package manager of choice or
21
+ [ rustup] ( https://www.rust-lang.org/tools/install ) .
22
+
23
+ Then you can use:
20
24
21
25
``` sh
22
26
( cd ./test/lint/test_runner/ && cargo fmt && cargo clippy && RUST_BACKTRACE=1 cargo run )
You can’t perform that action at this time.
0 commit comments