Skip to content

Commit af6134f

Browse files
committed
Merge pull request drivendataorg#21 from codyrioux/master
Less Verbose make Commands (data, lint)
2 parents 873cfd6 + d3d7b74 commit af6134f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

{{ cookiecutter.repo_name }}/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ BUCKET = {{ cookiecutter.s3_bucket }}
1111
#################################################################################
1212

1313
requirements:
14-
pip install -r requirements.txt
14+
pip install -q -r requirements.txt
1515

1616
data: requirements
1717
python src/make_dataset.py
@@ -20,7 +20,7 @@ clean:
2020
find . -name "*.pyc" -exec rm {} \;
2121

2222
lint:
23-
flake8 .
23+
flake8 --exclude=lib/,bin/ .
2424

2525
sync_data_to_s3:
2626
s3cmd sync --recursive data/ s3://$(BUCKET)/data/

0 commit comments

Comments
 (0)