Skip to content

Commit

Permalink
ignore mypy for now, can't be bothered
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed Oct 21, 2024
1 parent 107178d commit dce3cba
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 27 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/lint-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,27 +37,6 @@ jobs:
- name: ruff --> Check code formatting
run: ruff format --check .

# Use mypy for static type checking
mypy-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
# Start by installing type stubs
- name: mypy --> Install stubs
run: echo -e "y" | mypy --install-types . || exit 0
- name: mypy --> Static type checking
# Configured in pyprojet.toml
run: mypy .

# Use pipreqs to check for missing dependencies
pipreqs-check:
runs-on: ubuntu-latest
Expand Down
5 changes: 0 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,3 @@ ignore = [
"E722", # Do not use bare 'except'
"E741", # Ambiguous variable name
]

[tool.mypy]
ignore_missing_imports = true
follow_imports = 'skip'
exclude = 'build'
1 change: 0 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ipdb
mypy
pipreqs
ruff
selenium

0 comments on commit dce3cba

Please sign in to comment.