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 4e5cf9d commit 3b4b2f6Copy full SHA for 3b4b2f6
.github/workflows/main.yml
@@ -30,11 +30,11 @@ jobs:
30
- name: Run isort
31
run: isort --check-only --profile black src tests
32
33
- - name: Run flake8
34
- run: flake8 src tests
+ #- name: Run flake8
+ # run: flake8 src tests
35
36
- - name: Run mypy
37
- run: mypy src
+ #- name: Run mypy
+ # run: mypy src
38
39
test:
40
runs-on: ubuntu-latest
Makefile
@@ -26,8 +26,8 @@ test-cov: ## Run tests with coverage
26
lint: ## Run linters
27
$(BLACK) src tests
28
$(ISORT) --profile black src tests
29
- ## $(FLAKE8) src tests
- ## $(MYPY) src
+ $(FLAKE8) src tests
+ $(MYPY) src
format: ## Format code
0 commit comments