Skip to content

Commit e22c1c2

Browse files
authored
Merge pull request #2425 from sebix/dev-makefile
DEV: Add codespell and test commands to Makefile
2 parents ca870cd + 48d3098 commit e22c1c2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
(PR#2408 by Jan Kaliszewski).
3131

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

3435
### Data Format
3536

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,10 @@ docs: mkdocs.yml docs/* intelmq/etc/feeds.yaml intelmq/etc/harmonization.conf in
1212
mkdocs build
1313

1414
clean:
15-
rm -rf docs_build .mypy_cache .coverage .pytest_cache dist
15+
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

Comments
 (0)