You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ``pytest`` framework makes it easy to write small tests, yet
20
-
scales to support complex functional testing for applications and libraries.
20
+
scales to support complex functional testing for applications and libraries.
21
21
22
22
An example of a simple test:
23
23
@@ -35,7 +35,7 @@ To execute it::
35
35
36
36
$ pytest
37
37
======= test session starts ========
38
-
platform linux -- Python 3.4.3, pytest-2.8.5, py-1.4.31, pluggy-0.3.1
38
+
platform linux -- Python 3.4.3, pytest-2.8.5, py-1.4.31, pluggy-0.3.1
39
39
collected 1 items
40
40
41
41
test_sample.py F
@@ -52,7 +52,7 @@ To execute it::
52
52
======= 1 failed in 0.12 seconds ========
53
53
54
54
Due to ``pytest``'s detailed assertion introspection, only plain ``assert`` statements are used. See `getting-started <http://pytest.org/latest/getting-started.html#our-first-test-run>`_ for more examples.
55
-
55
+
56
56
57
57
Features
58
58
--------
@@ -69,7 +69,7 @@ Features
69
69
- Can run `unittest <http://pytest.org/latest/unittest.html>`_ (or trial),
70
70
`nose <http://pytest.org/latest/nose.html>`_ test suites out of the box;
- Rich plugin architecture, with over 150+ `external plugins <http://pytest.org/latest/plugins.html#installing-external-plugins-searching>`_ and thriving community;
0 commit comments