Skip to content

Commit

Permalink
Merge pull request #2425 from sebix/dev-makefile
Browse files Browse the repository at this point in the history
DEV: Add codespell and test commands to Makefile
  • Loading branch information
sebix authored Nov 14, 2023
2 parents ca870cd + 48d3098 commit e22c1c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
(PR#2408 by Jan Kaliszewski).

### Development
- Makefile: Add codespell and test commands (PR#2425 by Sebastian Wagner).

### Data Format

Expand Down
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,10 @@ docs: mkdocs.yml docs/* intelmq/etc/feeds.yaml intelmq/etc/harmonization.conf in
mkdocs build

clean:
rm -rf docs_build .mypy_cache .coverage .pytest_cache dist
rm -rf docs_build .mypy_cache .coverage .pytest_cache dist

codespell:
codespell -x .github/workflows/codespell.excludelines

test:
pytest --no-cov -v intelmq/tests/ && echo "Success!"

0 comments on commit e22c1c2

Please sign in to comment.