diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fef87b85..e6755396a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ (PR#2408 by Jan Kaliszewski). ### Development +- Makefile: Add codespell and test commands (PR#2425 by Sebastian Wagner). ### Data Format diff --git a/Makefile b/Makefile index 1342c63a3..e4a2c52bd 100644 --- a/Makefile +++ b/Makefile @@ -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 \ No newline at end of file + 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!"