File tree 4 files changed +8
-3
lines changed
4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ jobs:
201
201
working-directory : cpp-linter-lib
202
202
env :
203
203
CLANG_VERSION : ' 18'
204
- run : just test
204
+ run : just test --run-ignored=all
205
205
206
206
- name : Generate Coverage HTML report
207
207
working-directory : cpp-linter-lib
Original file line number Diff line number Diff line change @@ -412,6 +412,7 @@ mod test {
412
412
}
413
413
414
414
#[ tokio:: test]
415
+ #[ ignore]
415
416
async fn with_no_changed_sources ( ) {
416
417
// commit with no modified C/C++ sources
417
418
let sha = "0c236809891000b16952576dc34de082d7a40bf3" ;
@@ -426,6 +427,7 @@ mod test {
426
427
}
427
428
428
429
#[ tokio:: test]
430
+ #[ ignore]
429
431
async fn with_changed_sources ( ) {
430
432
// commit with modified C/C++ sources
431
433
let sha = "950ff0b690e1903797c303c5fc8d9f3b52f1d3c5" ;
@@ -445,6 +447,7 @@ mod test {
445
447
}
446
448
447
449
#[ tokio:: test]
450
+ #[ ignore]
448
451
async fn with_staged_changed_sources ( ) {
449
452
// commit with no modified C/C++ sources
450
453
let sha = "0c236809891000b16952576dc34de082d7a40bf3" ;
Original file line number Diff line number Diff line change @@ -899,12 +899,14 @@ mod test {
899
899
}
900
900
901
901
#[ tokio:: test]
902
+ #[ ignore]
902
903
#[ should_panic( expected = "REST API secondary rate limit exceeded" ) ]
903
904
async fn secondary_rate_limit ( ) {
904
905
simulate_rate_limit ( true ) . await ;
905
906
}
906
907
907
908
#[ tokio:: test]
909
+ #[ ignore]
908
910
#[ should_panic( expected = "REST API rate limit exceeded!" ) ]
909
911
async fn primary_rate_limit ( ) {
910
912
simulate_rate_limit ( false ) . await ;
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ py-dev:
19
19
20
20
# run the test suite
21
21
[group (" code coverage" )]
22
- test :
22
+ test * args = ' ' :
23
23
cargo llvm-cov --no-report \
24
24
nextest --manifest-path cpp-linter-lib/ Cargo.toml \
25
- - -lib --tests --color always
25
+ - -lib --tests --color always {{ args }}
26
26
27
27
# Clear previous test build artifacts
28
28
[group (" code coverage" )]
You can’t perform that action at this time.
0 commit comments