Skip to content

Commit

Permalink
edit makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ChinSekYi committed Jul 7, 2024
1 parent e4682d9 commit ba2914e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ install:
pip install -r requirements.txt

test:
python -m pytest --nbval notebook/EDA.ipynb notebook/MODEL_TRAINING.ipynb
python -m pytest app.py
#--nbval notebook/EDA.ipynb notebook/MODEL_TRAINING.ipynb

format:
isort *.py
Expand All @@ -13,6 +14,7 @@ run:
python main.py

lint:
pylint --disable=R,C --nbval notebook/EDA.ipynb notebook/MODEL_TRAINING.ipynb
#pylint --disable=R,C --nbval notebook/EDA.ipynb notebook/MODEL_TRAINING.ipynb
pylint app.py src/*.py src/components/*.py src/pipeline/*.py

all: install format lint

0 comments on commit ba2914e

Please sign in to comment.