cargo-geiger: fix build with rust 1.41

This commit is contained in:
Konrad Borowski 2020-02-18 11:46:50 +01:00
parent 329102c47b
commit 6637f1cac6

View File

@ -26,6 +26,12 @@ rustPlatform.buildRustPackage rec {
# we might be able to run these with something like
# `cargo insta review` in the `preCheck` phase.
checkPhase = ''
cd cargo-geiger/tests/snapshots
for file in *
do
mv $file r#$file
done
cd -
cargo test -- \
--skip test_package::case_2 \
--skip test_package::case_3 \