diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix index 8464483eb5369..87367b4c46f8a 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -226,13 +226,6 @@ python3.pkgs.buildPythonApplication { # TODO: verify if this is still true (I can't, no mac) doCheck = !stdenv.hostPlatform.isDarwin; - checkFlags = [ - # these two tests are flaky, see https://github.com/ankitects/anki/issues/3353 - # Also removed from anki-sync-server when removing this. - "--skip=media::check::test::unicode_normalization" - "--skip=scheduler::answering::test::state_application" - ]; - dontUseNinjaInstall = false; dontWrapQtApps = true; diff --git a/pkgs/games/anki/sync-server.nix b/pkgs/games/anki/sync-server.nix index a68e615c3d919..0c5b7f47943cd 100644 --- a/pkgs/games/anki/sync-server.nix +++ b/pkgs/games/anki/sync-server.nix @@ -18,13 +18,6 @@ rustPlatform.buildRustPackage { "anki-sync-server" ]; - checkFlags = [ - # these two tests are flaky, see https://github.com/ankitects/anki/issues/3353 - # Also removed from anki when removing this. - "--skip=media::check::test::unicode_normalization" - "--skip=scheduler::answering::test::state_application" - ]; - nativeBuildInputs = [ pkg-config ];