Jupyter 학습 노트_007
google colab에서 pytest 사용해보기
아래의 순서로 실시
pytest01.py
def add(a, b):
return a + b
def sub(a, b):
return a - b
test_pytest01.py
from pytest01 import add, sub
def test_add():
assert add(1, 2) == 4 # NGになる
def test1_sub():
assert sub(3, 1) == 2 # OKになる
def atest_sub():
assert sub(3, 1) == 2 # pytestが認識できない
Reference
이 문제에 관하여(Jupyter 학습 노트_007), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/dmkd3006/items/f4f773635c4c5ede2e22텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)