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.
2 parents ca870cd + 48d3098 commit e22c1c2Copy full SHA for e22c1c2
CHANGELOG.md
@@ -30,6 +30,7 @@
30
(PR#2408 by Jan Kaliszewski).
31
32
### Development
33
+- Makefile: Add codespell and test commands (PR#2425 by Sebastian Wagner).
34
35
### Data Format
36
Makefile
@@ -12,4 +12,10 @@ docs: mkdocs.yml docs/* intelmq/etc/feeds.yaml intelmq/etc/harmonization.conf in
12
mkdocs build
13
14
clean:
15
- rm -rf docs_build .mypy_cache .coverage .pytest_cache dist
+ rm -rf docs_build .mypy_cache .coverage .pytest_cache dist
16
+
17
+codespell:
18
+ codespell -x .github/workflows/codespell.excludelines
19
20
+test:
21
+ pytest --no-cov -v intelmq/tests/ && echo "Success!"
0 commit comments