I have many "false" surviving mutants like this one:

This mutant would be killed by mypy in the CI pipeline. However, it survives as I only run pytest -m "not slow" -x and pytest -m "not slow " && mypy app/ does not work. I've also tried pytest -m "not slow" --mypy -x, but that runs mypy over the tests as well which fails / makes each run pretty slow.
Do you have any suggestions what I could do?