0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Jupyter学習ノート_007

Last updated at Posted at 2020-01-13

google colabにpytestを試して見る

下記の手順で実施する

  • ソースコードを用意する
    • ネーミングルール
      • 「test」で始まるメソッドにする
      • 結果がOKかNGかはassert条件式の結果より判断する
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が認識できない
  • 実施した結果
    実施結果
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?