Skip to content

Commit

Permalink
Merge pull request #59 from EC-DIGIT-CSIRC/aaron_kaplan_issue_48
Browse files Browse the repository at this point in the history
fix #48
  • Loading branch information
aaronkaplan authored Jan 16, 2024
2 parents eda9a35 + d9599ff commit b445424
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

test: *.py parsers/* analyzers/*
test: *.py parsers/* analysers/*
python -m pytest --verbose tests
# or: nosetests -v


lint: *.py parsers/* analyzers/*
lint: *.py parsers/* analysers/*
pycodestyle --exclude=venv --ignore=errors=E221,E225,E251,E501,E266,E302 --max-line-length=128 $(git ls-files '*.py')
File renamed without changes.
2 changes: 1 addition & 1 deletion analyzers/apps.py → analysers/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# For Python3
# Author: Emiliern Le Jamtel

"""Apps analyzer.
"""Apps analyser.
Usage:
apps.py -i <logfolder>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
data_folder = "./data/"
parsed_data_folder = "./parsed_data/"
parsers_folder = "./parsers/"
analysers_folder = "./analyzers"
analysers_folder = "./analysers"
debug = True

0 comments on commit b445424

Please sign in to comment.