mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-25 02:39:16 +08:00
16 lines
650 B
Bash
Executable file
16 lines
650 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -e
|
|
|
|
# Filter out known issues in mypy checker
|
|
#
|
|
# - things which currently cannot be properly typed Django
|
|
# - https://github.com/sbdchd/celery-types/issues/157
|
|
# - settings do not have proper type annotations
|
|
# - testsuite mocks or simplifications (those probably should be addressed, but are too noisy now)
|
|
|
|
grep -vE '"Field" has no attribute "(choices|queryset|name|valid)"|.Settings. object has no attribute|/test.* has incompatible type "Mock[A-Za-z]*"; expected "(Unit|Check)"|/test.*has incompatible type "None"; expected "Unit"'
|