anki: skip flaky test

This commit is contained in:
cy
2024-12-07 20:01:32 -05:00
parent 7f4bcf7c81
commit dcea948b11
2 changed files with 12 additions and 0 deletions
+6
View File
@@ -226,6 +226,12 @@ python3.pkgs.buildPythonApplication {
# TODO: verify if this is still true (I can't, no mac)
doCheck = !stdenv.hostPlatform.isDarwin;
checkFlags = [
# this test is flaky, see https://github.com/ankitects/anki/issues/3619
# also remove from anki-sync-server when removing this
"--skip=deckconfig::update::test::should_keep_at_least_one_remaining_relearning_step"
];
dontUseNinjaInstall = false;
dontWrapQtApps = true;
+6
View File
@@ -18,6 +18,12 @@ rustPlatform.buildRustPackage {
"anki-sync-server"
];
checkFlags = [
# this test is flaky, see https://github.com/ankitects/anki/issues/3619
# also remove from anki when removing this
"--skip=deckconfig::update::test::should_keep_at_least_one_remaining_relearning_step"
];
nativeBuildInputs = [
pkg-config
];