Skip to content

Instantly share code, notes, and snippets.

View perhapsspy's full-sized avatar

PerhapsSPY perhapsspy

  • Seoul, Korea
View GitHub Profile

자신의 git 프로젝트 폴더 안 .git/hooks/pre-commit 파일에 아래 내용을 넣으세요.

#!/bin/sh
FILES=$(git diff --cached --name-only --diff-filter=ACM | grep -e '\.py$')
if [ -n "$FILES" ]; then
    flake8 $FILES
fi

이런식으로 출력되며 검은색 배경 기준으로 색이 적당히 들어가 있습니다.

todo perhapsspy at ~/Projects/todo (origin/master) 
$ 

~/.bash_profile 에 추가

# Pyenv 설치 (https://github.com/yyuu/pyenv-virtualenv)
brew install pyenv-virtualenv
# ~/.bash_profile 파일에 아래 내용 추가
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"

# 사용할 Python 버전을 미리 깔고 (최신버전을 쓰세요, 예로 3.6.1을 들겠습니다.)
pyenv install 3.6.1
@perhapsspy
perhapsspy / django-test-easy-and-fast.md
Last active May 20, 2022 05:06
Django에서 Test 쉽고 빠르게 하기