Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ed904c commit aeacb00Copy full SHA for aeacb00
.github/workflows/pythonpackage.yml
@@ -89,8 +89,11 @@ jobs:
89
- name: Check types with mypy
90
run: |
91
mypy --python-version=${{ matrix.python-version }} -p git
92
- # With new versions of mypy new issues might arise. This is a problem if there is nobody able to fix them,
93
- # so we have to ignore errors until that changes.
+ env:
+ MYPY_FORCE_COLOR: "1"
94
+ TERM: "xterm-256color" # For color: https://github.com/python/mypy/issues/13817
95
+ # With new versions of mypy new issues might arise. This is a problem if there is
96
+ # nobody able to fix them, so we have to ignore errors until that changes.
97
continue-on-error: true
98
99
- name: Test with pytest
0 commit comments