Skip to content

Commit 5977250

Browse files
JasonKChowmeta-codesync[bot]
authored andcommitted
Remove mypy from actions (#829)
Summary: Pull Request resolved: #829 We can’t keep supporting mypy given some larger API changes that don’t actually break our code but messed with type checking. We need larger refactors to make this work but we can’t support it right now. So temporarily disabling mypy with note. Reviewed By: tymmsc Differential Revision: D91599368 fbshipit-source-id: 91ae333f51ae0f9fb37d523e57b6232dba1320f6
1 parent f6a344c commit 5977250

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

.github/workflows/build-lint-test.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,23 @@ jobs:
3434
- name: Lint aepsych with ruff
3535
run: |
3636
ruff check --select=E9,F63,F7,F82 --output-format github
37-
38-
- name: Type check aepsych with mypy
39-
if: always()
40-
run: mypy --config-file mypy.ini
37+
38+
#### REMOVED: can't upkeep right now due to upstream API changes
39+
# - name: Type check aepsych with mypy
40+
# if: always()
41+
# run: mypy --config-file mypy.ini
4142

4243
- name: Lint aepsych_client with ruff
4344
if: always()
4445
run: |
4546
ruff check --select=E9,F63,F7,F82 --output-format github
4647
working-directory: clients/python
4748

48-
- name: Type check aepsych_client with mypy
49-
if: always()
50-
run: mypy --config-file mypy.ini
51-
working-directory: clients/python
49+
#### REMOVED: can't upkeep right now due to upstream API changes.
50+
# - name: Type check aepsych_client with mypy
51+
# if: always()
52+
# run: mypy --config-file mypy.ini
53+
# working-directory: clients/python
5254

5355
- uses: omnilib/ufmt@action-v1
5456
if: always()

0 commit comments

Comments
 (0)