Skip to content

Commit 71aa963

Browse files
authored
Disable mypy typechecking in CI configuration (#243)
Comment out typechecking (mypy) steps in CI workflow
1 parent 3bc4324 commit 71aa963

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -52,28 +52,28 @@ jobs:
5252
uses: codecov/[email protected]
5353
with:
5454
token: ${{ secrets.CODECOV_TOKEN }}
55-
typechecking:
56-
name: mypy
57-
runs-on: ubuntu-latest
58-
steps:
59-
- uses: actions/checkout@v4
60-
with:
61-
fetch-depth: 0
62-
- uses: mamba-org/setup-micromamba@v2
63-
with:
64-
environment-name: ship
65-
environment-file: environment.yml
66-
create-args: >-
67-
python=3.12
55+
# typechecking:
56+
# name: mypy
57+
# runs-on: ubuntu-latest
58+
# steps:
59+
# - uses: actions/checkout@v4
60+
# with:
61+
# fetch-depth: 0
62+
# - uses: mamba-org/setup-micromamba@v2
63+
# with:
64+
# environment-name: ship
65+
# environment-file: environment.yml
66+
# create-args: >-
67+
# python=3.12
6868

69-
- run: pip install . --no-deps
70-
- run: conda install lxml # dep for report generation
71-
- name: Typechecking
72-
run: |
73-
mypy --install-types --non-interactive src/virtualship --html-report mypy-report
74-
- name: Upload test results
75-
if: ${{ always() }} # Upload even on mypy error
76-
uses: actions/upload-artifact@v4
77-
with:
78-
name: Mypy report
79-
path: mypy-report
69+
# - run: pip install . --no-deps
70+
# - run: conda install lxml # dep for report generation
71+
# - name: Typechecking
72+
# run: |
73+
# mypy --install-types --non-interactive src/virtualship --html-report mypy-report
74+
# - name: Upload test results
75+
# if: ${{ always() }} # Upload even on mypy error
76+
# uses: actions/upload-artifact@v4
77+
# with:
78+
# name: Mypy report
79+
# path: mypy-report

0 commit comments

Comments
 (0)