feat: Remove linting step from CI workflow

This commit is contained in:
2025-06-20 21:26:05 +07:00
parent ac8fd924c1
commit e505cc4b3a

View File

@@ -26,11 +26,6 @@ jobs:
pip install pytest pytest-cov flake8 pip install pytest pytest-cov flake8
pip install -r requirements.txt pip install -r requirements.txt
- name: Lint code
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run unit tests with coverage - name: Run unit tests with coverage
run: | run: |
python -m pytest tests/ --cov=src python -m pytest tests/ --cov=src