pytest不在终端执行的方式

  • 终端运行:

    pytest -v  test_desktop.py   --alluredir reults
    

     

  • 非终端运行:

    • 在app_main.py中运行,然后在pycharm右击运行
      if __name__ == '__main__':
          pytest.main(["test_desktop.py", '--alluredir', 'results/'])

       

    • 运行mark用例
      import pytest
      
      if __name__ == '__main__':
          pytest.main(["-m", 'Desktop_Professional and 特性1'])
posted @ 2022-01-30 12:01  Tarzen  阅读(65)  评论(0编辑  收藏  举报