You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2023/03/28 22:15:20 UTC

[incubator-ponymail-foal] branch master updated: Catch all python files

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new f5addb5  Catch all python files
f5addb5 is described below

commit f5addb5824e0c4d08474b22840ce556deade48f6
Author: Sebb <se...@apache.org>
AuthorDate: Tue Mar 28 23:15:12 2023 +0100

    Catch all python files
---
 .github/workflows/type-tests.yml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/type-tests.yml b/.github/workflows/type-tests.yml
index 91f8d17..16cab27 100644
--- a/.github/workflows/type-tests.yml
+++ b/.github/workflows/type-tests.yml
@@ -34,8 +34,7 @@ jobs:
     - name: Type testing with mypy
       run: |
           mypy --cache-dir /tmp/ --install-types
-          mypy --cache-dir /tmp/ --ignore-missing-imports tools/archiver.py
-          mypy --cache-dir /tmp/ --ignore-missing-imports tools/import-mbox.py
-          mypy --cache-dir /tmp/ --ignore-missing-imports server/main.py
+          mypy --cache-dir /tmp/ --ignore-missing-imports tools/*.py
+          mypy --cache-dir /tmp/ --ignore-missing-imports server/*.py
           mypy --cache-dir /tmp/ --ignore-missing-imports server/plugins/*.py
           mypy --cache-dir /tmp/ --ignore-missing-imports server/endpoints/*.py