Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mypy: fix errors, codecov UNKNOWN badge fix #171

Merged
merged 39 commits into from
Oct 20, 2022
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
1f28c67
Add mypy to CI/CD
annahedstroem Oct 5, 2022
68ee4f5
Added autofix on black
annahedstroem Oct 5, 2022
6169908
Remove autofixes on flake8 and mypy
annahedstroem Oct 5, 2022
aed92ed
Added pip install mypy
annahedstroem Oct 5, 2022
3d61c54
Added black for linting
annahedstroem Oct 5, 2022
6d2d045
Update python-package.yml
annahedstroem Oct 5, 2022
d5d2329
Typo fixed
annahedstroem Oct 5, 2022
3e6bd39
Fixed typing --upgrade
annahedstroem Oct 5, 2022
bd3a4fd
Fixed added pip
annahedstroem Oct 5, 2022
bdb6642
Removed autofix
annahedstroem Oct 6, 2022
5d447e0
Merge branch 'main' into mypy_fix_issues_ci_cd
dilyabareeva Oct 12, 2022
fdf61fe
mypy fixes + small CONTRIBUTING.md update
dilyabareeva Oct 12, 2022
8dbd5fb
Merge branch 'fix-normalisation-division' into mypy_fix_issues_ci_cd
dilyabareeva Oct 18, 2022
abede2b
solve merge conflicts
dilyabareeva Oct 18, 2022
7ff02f3
Merge branch 'main' into mypy_fix_issues_ci_cd
dilyabareeva Oct 18, 2022
7006380
python-package.yml issue
dilyabareeva Oct 19, 2022
203ce1c
python-package.yml issue fix
dilyabareeva Oct 19, 2022
78d7489
python-package.yml issue fix 2
dilyabareeva Oct 19, 2022
36e0ef1
change lint action dir
dilyabareeva Oct 19, 2022
fc21f6b
change mypy dir
dilyabareeva Oct 19, 2022
81efb49
change mypy version
dilyabareeva Oct 19, 2022
7a83184
change mypy config
dilyabareeva Oct 19, 2022
7e2b145
Merge branch 'main' into mypy_fix_issues_ci_cd
annahedstroem Oct 19, 2022
31e8402
revert mypy lint action config
dilyabareeva Oct 19, 2022
9008ddf
Merge remote-tracking branch 'origin/mypy_fix_issues_ci_cd' into mypy…
dilyabareeva Oct 19, 2022
7519d04
Testing to fix mypy issue
annahedstroem Oct 19, 2022
2c7f574
Merge branch 'mypy_fix_issues_ci_cd' of https://github.com/understand…
annahedstroem Oct 19, 2022
efeaf23
fixing mypy issues
annahedstroem Oct 19, 2022
c34eea8
fixed Any import
annahedstroem Oct 19, 2022
605617e
updated codecov
annahedstroem Oct 20, 2022
644e06a
updated codecov
annahedstroem Oct 20, 2022
969755a
Merge branch 'main' into mypy_fix_issues_ci_cd
annahedstroem Oct 20, 2022
801b6ce
Merge branch 'main' into mypy_fix_issues_ci_cd
annahedstroem Oct 20, 2022
a1c7801
Fixed mypy issues
annahedstroem Oct 20, 2022
3d6a6f4
Fixed mypy, remaining errors deemed ok.
annahedstroem Oct 20, 2022
08a46d2
changes to codecov.yml
annahedstroem Oct 20, 2022
6a08f48
changes to codecov.yml
annahedstroem Oct 20, 2022
7ddbd37
changes to codecov.yml
annahedstroem Oct 20, 2022
eb07d66
updated CONTRIBUTING
annahedstroem Oct 20, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added black for linting
annahedstroem authored Oct 5, 2022
commit 3d61c5465cb9012fd8d232caae09190a0ae757fd
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest mypy
python -m pip install flake8 pytest mypy black
if [ -f requirements_test.txt ]; then pip install -r requirements_test.txt; fi
- name: Lint with flake8
run: |