SeoulNative / naengboo

naengboo backend repo
2 stars 2 forks source link

Init cli #15

Closed hoyeon94 closed 3 years ago

hoyeon94 commented 3 years ago

What

Why

Description

명령어 추가 방법

manage.py에 다음과 같은 코드를 작성하면 명령어를 추가할 수 있습니다.

@cli.command()
def test():
    '''
    run pytest
    '''
    os.environ["FLASK_CONFIG"] = "test"
    os.system("pytest")

사용 방법

python3 manage.py test
python3 manage.py --help
Usage: manage.py [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  test  run pytest

관련 이슈를 확인해주세요!