Skip to content

Commit d17d3db

Browse files
committed
개발 환경 설정에 detox 문제를 우회해서 일단 tox만 쓰도록 안내문을 고침
1 parent d75bf5a commit d17d3db

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

README.rst

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -249,18 +249,21 @@ macOS 기준 pyenv 설치 권장
249249

250250
# pyenv 준비
251251
brew install pyenv
252-
pyenv install 2.7.12 3.4.5 3.5.2 pypy-5.6.0
253-
pyenv local 2.7.12 3.4.5 3.5.2 pypy-5.6.0
252+
pyenv install -s 2.7.13
253+
pyenv install -s 3.4.7
254+
pyenv install -s 3.5.4
255+
pyenv install -s 3.6.2
256+
pyenv install -s pypy-5.7.1
257+
pyenv local 2.7.13 3.4.7 3.5.4 3.6.2 pypy-5.7.1
258+
pip install pytest pytest-cov collective.checkdocs Pygments tox-pyenv
259+
254260
# tox
255-
pip install tox-pyenv detox
256-
detox
261+
tox
257262

258263
# 커버리지 확인
259-
pip install pytest-cov
260264
python -m pytest tests/ --cov=./
261265

262266
# 문서 확인
263-
pip install collective.checkdocs Pygments
264267
python setup.py checkdocs
265268

266269
기여

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ deps =
88
flake8
99
collective.checkdocs
1010
Pygments
11-
codecov
11+
coverage
1212
commands =
1313
flake8 .
1414
python setup.py checkdocs
1515
coverage run setup.py test
16-
codecov

0 commit comments

Comments
 (0)