Support skipping lint warnings
This commit is contained in:
parent
a7d9e15f65
commit
2eb699cf49
4 changed files with 23 additions and 3 deletions
|
|
@ -47,6 +47,9 @@
|
|||
(option '("skip-system-tests") #f #f
|
||||
(lambda (opt name _ result)
|
||||
(alist-cons 'skip-system-tests #t result)))
|
||||
(option '("skip-lint-warnings") #f #f
|
||||
(lambda (opt name _ result)
|
||||
(alist-cons 'skip-lint-warnings #t result)))
|
||||
(option '("per-job-parallelism") #t #f
|
||||
(lambda (opt name arg result)
|
||||
(alist-cons 'per-job-parallelism
|
||||
|
|
@ -131,6 +134,8 @@
|
|||
(* 2 (assq-ref opts 'max-processes)))
|
||||
#:skip-system-tests?
|
||||
(assq-ref opts 'skip-system-tests)
|
||||
#:skip-lint-warnings?
|
||||
(assq-ref opts 'skip-lint-warnings)
|
||||
#:extra-inferior-environment-variables
|
||||
(filter-map
|
||||
(match-lambda
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue