##// END OF EJS Templates
contrib: propagate `pytype` failures outside of `check-pytype.sh`...
contrib: propagate `pytype` failures outside of `check-pytype.sh` A recent series got landed with a pytype failure, because it wasn't propagated to the CI caller (see c47fe7fd312d). I suspect it started recently with 069735062524, because failures have been flagged in the past. The shebang line needs to be specific to bash, otherwise it ignores this non-POSIX extension. I'm not aware of a POSIX flavor of this option.

File last commit:

r51699:337bc83c default
r53296:0c4832bf stable
Show More
Cargo.toml
21 lines | 600 B | application/toml | TOMLLexer
Martin von Zweigbergk
contrib: add a partial-merge tool for sorted lists (such as Python imports)...
r49874 # A tool that performs a 3-way merge, resolving conflicts in sorted lists and
# leaving other conflicts unchanged. This is useful with Mercurial's support
# for partial merge tools (configured in `[partial-merge-tools]`).
[package]
name = "merge-lists"
version = "0.1.0"
edition = "2021"
# We need https://github.com/rust-lang/rust/pull/89825
rust-version = "1.59"
[dependencies]
Martin von Zweigbergk
contrib: upgrade merge-lists from clap v3 to clap v4...
r51699 clap = { version = "4.3.17", features = ["derive"] }
Martin von Zweigbergk
contrib: add a partial-merge tool for sorted lists (such as Python imports)...
r49874 itertools = "0.10.3"
regex = "1.5.5"
similar = { version="2.1.0", features = ["bytes"] }
[dev-dependencies]
assert_cmd = "2.0.4"
insta = "1.13.0"
tempdir = "0.3.7"