Developer Guides #7889
-
Are there any docs that guide developers through the code? For instance, why is the code structured under the _pytest directory? |
Beta Was this translation helpful? Give feedback.
Answered by
The-Compiler
Oct 12, 2020
Replies: 1 comment
-
There are the contribution docs and the API reference (many things in there, especially plugin hooks, are relevant for the core as well). The |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nicoddemus
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are the contribution docs and the API reference (many things in there, especially plugin hooks, are relevant for the core as well).
The
_pytest
directory is a Python package with the leading underscore marking it as "internal", while anything that's public gets exposed in thepytest
package. That's not something specific to pytest though, see e.g. https://stackoverflow.com/a/55178477/2085149 as well.