Skip to content

Commit

Permalink
added simple make targets
Browse files Browse the repository at this point in the history
  • Loading branch information
kgashok committed Jan 14, 2022
1 parent 83cf09c commit b82047f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

.PHONY: clean-pyc init lint test

lint:
flake8 --exclude=.tox

#init:
# pip install -r requirements.txt

test:
pytest --verbose --color=yes $(TEST_PATH)

clean-pyc:
echo "Cleaning, TBD"

2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
def input_value():
input = 39
return input
'''
'''

1 comment on commit b82047f

@kgashok
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add back conftest.py for future testing scenarios. As per this SO answer.

Please sign in to comment.