一、Python所有方向的学习路线
Python所有方向的技术点做的整理,形成各个领域的知识点汇总,它的用处就在于,你可以按照下面的知识点去找对应的学习资源,保证自己学得较为全面。
二、Python必备开发工具
工具都帮大家整理好了,安装就可直接上手!
三、最新Python学习笔记
当我学到一定基础,有自己的理解能力的时候,会去阅读一些前辈整理的书籍或者手写的笔记资料,这些笔记详细记载了他们对一些技术点的理解,这些理解是比较独到,可以学到不一样的思路。
四、Python视频合集
观看全面零基础学习视频,看视频学习是最快捷也是最有效果的方式,跟着视频中老师的思路,从基础到深入,还是很容易入门的。
五、实战案例
纸上得来终觉浅,要学会跟着视频一起敲,要动手实操,才能将自己的所学运用到实际当中去,这时候可以搞点实战案例来学习。
六、面试宝典
简历模板
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
现在我也找了很多测试的朋友,做了一个分享技术的交流群,共享了很多我们收集的技术文档和视频教程。
如果你不想再体验自学时找不到资源,没人解答问题,坚持几天便放弃的感受
可以加入我们一起交流。而且还有很多在自动化,性能,安全,测试开发等等方面有一定建树的技术大牛
分享他们的经验,还会分享很多直播讲座和技术沙龙
可以免费学习!划重点!开源的!!!
qq群号:110685036
![](https://img-blog.csdnimg.cn/img_convert/6d76dc5345de39bc226a569dfde41aee.png)
#### **-q 只显示整体测试结果**
简化测试整体结果。F:代表测试失败、.:代表测试通过
import pytest
class TestClass():
def test_zne(self):
print(1)
assert 1==2
def test_two(self):
print(2)
assert 1==2
def test_a(self):
print(3)
assert 1==1
if name == ‘main’:
pytest.main([‘-q’])
FF. [100%]
================================== FAILURES ===================================
#### **-s 用于显示测试函数中print()函数输出**
显示测试用例中 print() 中的值
import pytest
class TestClass():
def test_zne(self):
print(1)
assert 1==2
def test_two(self):
print(2)
assert 1==2
def test_a(self):
print(3)
assert 1==1
if name == ‘main’:
pytest.main([‘-s’])
============================= test session starts =============================
platform win32 – Python 3.8.10, pytest-6.2.5, py-1.10.0, pluggy-1.0.0
rootdir: D:\Users\72036454\Desktop\pythonProject\Base
plugins: allure-pytest-2.9.45
collected 3 items
test_page.py 1
F2
F3
.
================================== FAILURES ===================================
#### **-x 在第一个错误或失败的测试中立即退出**
第一条用例执行失败,立即退出不在往下执行用例
import pytest
class TestClass():
def test_zne(self):
print(1)
assert 1==2
def test_two(self):
print(2)
assert 1==2
def test_a(self):
print(3)
assert 1==1
if name == ‘main’:
pytest.main([‘-x’,‘-s’])
============================= test session starts =============================
platform win32 – Python 3.8.10, pytest-6.2.5, py-1.10.0, pluggy-1.0.0
rootdir: D:\Users\72036454\Desktop\pythonProject\Base
plugins: allure-pytest-2.9.45
collected 3 items
test_page.py 1
F
================================== FAILURES ===================================
#### **-m 只运行带有装饰器配置的测试用例**
用例中,第二和第三条用例加上了装饰器,装饰器最后一个单词分别为“slow” 和 “faster” ,-m 拿着两个单词去识别带这个装饰器的用例,识别到就执行,没有识别到的就不执行。
-m后面接的是表达式:['-s','-m slow or faster'] 、['-s','-m slow and faster']、['-s','-m not slow'] 这些表达式都支持。
import pytest
class TestClass():
def test_zne(self):
print(1)
assert 1==2
@pytest.mark.slow
def test_two(self):
print(2)
assert 1==2
@pytest.mark.faster
def test_a(self):
print(3)
assert 1==1
if name == ‘main’:
pytest.main([‘-s’,‘-m slow or faster’])
============================= test session starts =============================
platform win32 – Python 3.8.10, pytest-6.2.5, py-1.10.0, pluggy-1.0.0
rootdir: D:\Users\72036454\Desktop\pythonProject\Base
plugins: allure-pytest-2.9.45
collected 3 items / 1 deselected / 2 selected
test_page.py 2
F3
.
================================== FAILURES ===================================
#### **-k 通过表达式运行指定的测试用例**
通过表达式匹配用例的函数名去执行用例,not test\_zne 意思是不执行“test\_zne”这条用例,所以就会执行第二第三条。同理 ['-s','-k test\_zne'] 表示只执行第一条。
import pytest
class TestClass():
def test_zne(self):
print(1)
assert 1==2
@pytest.mark.slow
def test_two(self):
print(2)
assert 1==2
@pytest.mark.faster
def test_a(self):
print(3)
assert 1==1
if name == ‘main’:
pytest.main([‘-s’,‘-k not test_zne’])
============================= test session starts =============================
platform win32 – Python 3.8.10, pytest-6.2.5, py-1.10.0, pluggy-1.0.0
rootdir: D:\Users\72036454\Desktop\pythonProject\Base
plugins: allure-pytest-2.9.45
collected 3 items / 1 deselected / 2 selected
test_page.py 2
F3
.
================================== FAILURES ===================================
#### **-h 帮助**
这才是重点,学会使用这个,剩余的都学会了
import pytest
class TestClass():
def test_zne(self):
print(1)
assert 1==2
@pytest.mark.slow
def test_two(self):
print(2)
assert 1==2
@pytest.mark.faster
def test_a(self):
print(3)
assert 1==1
if name == ‘main’:
pytest.main([‘-h’])
![](https://img-blog.csdnimg.cn/img_convert/914cc8ca241e4d1c9916d5f80336b369.png)
### **pytest的执行顺序:**
* 默认情况下,pytest的执行顺序是自上往下的。
* 可以通过第三方插件`pytest-ordering`实现自定义用例执行顺序
* 官方文档: [https://pytest-ordering.readthedocs.io/en/develop/]( )
#### **安装插件:**
pip install pytest-ordering
#### **pytest-ordering使用:**
#### **方式一**
* 第一个执行:`@pytest.mark.first`
* 第二个执行:`@pytest.mark.second`
* 倒数第二个执行:`@pytest.mark.second_to_last`
* 最后一个执行:`@pytest.mark.last`
#### **方式二**
* 第一个执行:`@pytest.mark.run('first')`
* 第二个执行:`@pytest.mark.run('second')`
* 倒数第二个执行:`@pytest.mark.run('second_to_last')`
* 最后一个执行:`@pytest.mark.run('last')`
文末有福利领取哦~
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
👉**一、Python所有方向的学习路线**
Python所有方向的技术点做的整理,形成各个领域的知识点汇总,它的用处就在于,你可以按照上面的知识点去找对应的学习资源,保证自己学得较为全面。![img](https://img-blog.csdnimg.cn/c67c0f87cf9343879a1278dfb067f802.png)
👉**二、Python必备开发工具**
![img](https://img-blog.csdnimg.cn/757ca3f717df4825b7d90a11cad93bc7.png)
👉**三、Python视频合集**
观看零基础学习视频,看视频学习是最快捷也是最有效果的方式,跟着视频中老师的思路,从基础到深入,还是很容易入门的。
![img](https://img-blog.csdnimg.cn/31066dd7f1d245159f21623d9efafa68.png)
👉 **四、实战案例**
光学理论是没用的,要学会跟着一起敲,要动手实操,才能将自己的所学运用到实际当中去,这时候可以搞点实战案例来学习。**(文末领读者福利)**
![img](https://img-blog.csdnimg.cn/e78afb3dcb8e4da3bae5b6ffb9c07ec7.png)
👉**五、Python练习题**
检查学习结果。
![img](https://img-blog.csdnimg.cn/280da06969e54cf180f4904270636b8e.png)
👉**六、面试资料**
我们学习Python必然是为了找到高薪的工作,下面这些面试题是来自阿里、腾讯、字节等一线互联网大厂最新的面试资料,并且有阿里大佬给出了权威的解答,刷完这一套面试资料相信大家都能找到满意的工作。
![img](https://img-blog.csdnimg.cn/a9d7c35e6919437a988883d84dcc5e58.png)
![img](https://img-blog.csdnimg.cn/5db8141418d544d3a8e9da4805b1a3f9.png)
👉因篇幅有限,仅展示部分资料,这份完整版的Python全套学习资料已经上传
**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**
**[需要这份系统化学习资料的朋友,可以戳这里获取](https://bbs.csdn.net/topics/618317507)**
**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**