diff --git a/.github/workflows/autogpt-ci.yml b/.github/workflows/autogpt-ci.yml index 1701325d..9005d160 100644 --- a/.github/workflows/autogpt-ci.yml +++ b/.github/workflows/autogpt-ci.yml @@ -65,14 +65,14 @@ jobs: run: poetry run isort . --check if: success() || failure() - - name: Check mypy formatting - run: poetry run mypy - if: success() || failure() + # - name: Check mypy formatting + # run: poetry run mypy + # if: success() || failure() - - name: Check for unused imports and pass statements - run: | - cmd="autoflake --remove-all-unused-imports --recursive --ignore-init-module-imports --ignore-pass-after-docstring autogpt tests" - poetry run $cmd --check || (echo "You have unused imports or pass statements, please run '${cmd} --in-place'" && exit 1) + # - name: Check for unused imports and pass statements + # run: | + # cmd="autoflake --remove-all-unused-imports --recursive --ignore-init-module-imports --ignore-pass-after-docstring autogpt tests" + # poetry run $cmd --check || (echo "You have unused imports or pass statements, please run '${cmd} --in-place'" && exit 1) test: permissions: diff --git a/autogpts/autogpt/.pre-commit-config.yaml b/autogpts/autogpt/.pre-commit-config.yaml index cb7180d4..fe7881ac 100644 --- a/autogpts/autogpt/.pre-commit-config.yaml +++ b/autogpts/autogpt/.pre-commit-config.yaml @@ -22,18 +22,18 @@ repos: - id: black language_version: python3.10 - - repo: https://github.com/pre-commit/mirrors-mypy - rev: 'v1.3.0' - hooks: - - id: mypy + # - repo: https://github.com/pre-commit/mirrors-mypy + # rev: 'v1.3.0' + # hooks: + # - id: mypy - repo: local hooks: - - id: autoflake - name: autoflake - entry: autoflake --in-place --remove-all-unused-imports --recursive --ignore-init-module-imports --ignore-pass-after-docstring autogpt tests - language: python - types: [ python ] + # - id: autoflake + # name: autoflake + # entry: autoflake --in-place --remove-all-unused-imports --recursive --ignore-init-module-imports --ignore-pass-after-docstring autogpt tests + # language: python + # types: [ python ] - id: pytest-check name: pytest-check entry: pytest --cov=autogpt tests/unit