We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 391282e commit f16e62bCopy full SHA for f16e62b
1 file changed
README.md
@@ -21,16 +21,18 @@ in this repository We work on 4 way to testing our application In the simplest
21
possible way. . .
22
23
* unittest
24
+* pytest
25
* doctest
26
* nose
-* pytest
27
+
28
29
## Technologies
30
31
Project is created with:
32
33
* Python: 3.9
34
* nose: 1.3.7
35
+* pytest: 6.2.4
36
37
## Help
38
@@ -96,6 +98,18 @@ nosetests
96
98
nosetests -v test_file.py
97
99
```
100
101
+* run all tests with pytest:
102
103
+```shell
104
+pytest
105
+```
106
107
+* run one test with pytest:
108
109
110
+pytest -v test_file.py
111
112
113
## Credits
114
115
* [mongard](https://www.mongard.ir/courses/unittest)
0 commit comments