Skip to content

Commit

Permalink
addign pylint for subfolder files too
Browse files Browse the repository at this point in the history
  • Loading branch information
paigerube14 committed Mar 6, 2024
1 parent 12f19b0 commit 540e6b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
pip install .
- name: Analysing the code with pylint
run: |
pylint -d C0103 $(git ls-files '*.py')
pylint -d C0103 $(git ls-files '*/*.py' '*.py')
4 changes: 3 additions & 1 deletion orion.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ def orion(**kwargs):
lambda left, right: pd.merge(left, right, on="uuid", how="inner"),
dataframe_list,
)
match.save_results(merged_df, csv_file_path=kwargs["output"].split(".")[0]+"-"+test['name']+".csv")
match.save_results(
merged_df, csv_file_path=kwargs["output"].split(".")[0]+"-"+test['name']+".csv"
)

if kwargs["hunter_analyze"]:
orion_funcs.run_hunter_analyze(merged_df,test)
Expand Down

0 comments on commit 540e6b2

Please sign in to comment.