寵物集市-寵物集市華東、華南、華北排行榜一覽表
661
2022-05-29
文檔:https://docs.pytest.org/en/stable/
安裝
pip install pytest
1
測試文件 test_hello.py
# -*- coding: utf-8 -*- import pytest # test_開頭 def test_hello(): print('hello') if __name__ == '__main__': # 命令行運行 $ pytest pytest.main(['-s', __file__])
1
2
3
4
5
6
7
8
9
10
11
12
13
Python
版權聲明:本文內容由網絡用戶投稿,版權歸原作者所有,本站不擁有其著作權,亦不承擔相應法律責任。如果您發現本站中有涉嫌抄襲或描述失實的內容,請聯系我們jiasou666@gmail.com 處理,核實后本網站將在24小時內刪除侵權內容。