因為嫌棄官網太慢,然後跑到微軟**裝了python(悔不當初)
折騰了半天還是跑去官網重新裝了一遍python3.8
python3.8自帶pip,但是使用前需要把路徑加入變數path
嘗試用命令安裝pytest (命令:pip install -u pytest),結果報錯了
這裡參考了文章: 解決pip安裝matplotlib過程中could not find a version that satisfies the requirement pyparsing問題
她的環境是win10,python3.7,我是win10+python3.8 (是不是3.7之後都會缺少這個呢?只是乙個猜測)
再次嘗試安裝pytest,pip install -u pytest,安裝完之後輸入命令pytest --version,成功顯示版本資訊就是真的成功啦~~
使用pytest框架遇到的問題
原因 pytest allure adaptor和allure pytest不能同時使用,需要解除安裝掉pytest allure adaptor。解決方法 pip uninstall pytest allure adaptor pip install allure pytest 2 引入自動包失敗...
安裝pytest時遇到的問題及解決方案
1.遇到的問題 用pip安裝pytest,一直提示已經requirement already satisfied,但是在cmd中輸入pytest,又提示不是內部檔案。2.原因 因為我之前都是直接在專案裡直接安裝第三方庫 pycharm setting 有可能是我在專案裡已經裝了pytest,這就導致...
pytest安裝使用
安裝pytest pip install u pytest 安裝pytest pytest version 檢視版本 在pytest框架中,有如下約束 所有的單測檔名都需要滿足test py格式或 test.py格式。在單測檔案中,可以包含test 開頭的函式,也可以包含test開頭的類。在單測類中...