From 1784cfbc376c53810699afdb89aec365c851e570 Mon Sep 17 00:00:00 2001 From: Yoshiki Obinata Date: Wed, 5 Feb 2025 23:06:33 +0900 Subject: [PATCH] temporary disable mypy test due to symlink submodules --- .github/workflows/peripheral.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/peripheral.yml b/.github/workflows/peripheral.yml index fd97763..3de8e1c 100644 --- a/.github/workflows/peripheral.yml +++ b/.github/workflows/peripheral.yml @@ -17,15 +17,16 @@ jobs: - name: pip install formatters and mypy run: | pip3 install mypy flake8 isort + # Temporary commented out due to avoid testing submodule packages + # TODO (HiroIshida) fix + # - name: check by mypy + # run: | + # pip3 install -r requirements.txt + # pip3 install numpy==1.23 # to enable numpy's type checking + # mypy --version + # mypy . - - name: check by mypy - run: | - pip3 install -r requirements.txt - pip3 install numpy==1.23 # to enable numpy's type checking - mypy --version - mypy . - - - name: check by isrot and flake8 + - name: check by isort and flake8 run: | python3 -m isort example/ test/ node_script/ python3 -m flake8 example/ test/ node_script/