Skip to content

Commit

Permalink
Consistancy on slash
Browse files Browse the repository at this point in the history
  • Loading branch information
smallwat3r committed Nov 3, 2024
1 parent 64c4ffc commit d6fafb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Linting checks
run: |
# stop the build if there are any Python syntax errors
ruff check shhh tests --exclude shhh/migrations/ --exclude
ruff check shhh tests --exclude shhh/migrations/ --exclude shhh/static/
- name: SAST analysis
run: |
bandit -r shhh -x shhh/static
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ yapf: ## Format python code with yapf
.PHONY: ruff
ruff: ## Run ruff
@echo "Running Ruff report..."
$(PYTHON) -m ruff check $(SRC_DIR) $(TEST_DIR) --exclude shhh/migrations/ --exclude shhh/static
$(PYTHON) -m ruff check $(SRC_DIR) $(TEST_DIR) --exclude shhh/migrations/ --exclude shhh/static/

.PHONY: mypy
mypy: ## Run mypy
Expand Down

0 comments on commit d6fafb4

Please sign in to comment.