File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -23,3 +23,18 @@ Configuration file options can be set in the `ini file`.
23
23
decorated. If set to `True `, the outcome of all tests will be
24
24
registered. It has the same effect as if all tests are
25
25
implicitly decorated with :func: `pytest.mark.dependency `.
26
+
27
+ Command line options
28
+ --------------------
29
+
30
+ The following command line options are added by pytest.dependency:
31
+
32
+ `--ignore-unknown-dependency `
33
+ By default, a test will be skipped unless all the dependencies
34
+ have been run successful. If this option is set, a test will be
35
+ skipped if any of the dependencies has been skipped or failed.
36
+ E.g. dependencies that have not been run at all will be ignored.
37
+
38
+ This may be useful if you run only a subset of the testsuite and
39
+ some tests in the selected set are marked to depend on other
40
+ tests that have not been selected.
You can’t perform that action at this time.
0 commit comments