pytest 報錯原因是什麼?pytest 通過 pip install 安裝,在 Scripts 資料夾。test_sample 也放在 Scripts 資料夾內

jerrygo123發表於2020-08-24

import pytest

def f(x):
return x+1

def test_answer():
assert f(3)==5

if name=="main":
pytest.main()

“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“
INTERNALERROR> AttributeError: 'NoneType' object has no attribute 'fileno'

相關文章