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
{{ message }}
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
I have a pyproject.toml which includes the configuration of black. It seems that changing options like skip-string-normalization changes the test behaviour of pytest-black but keywords like include and exclude are not recognized. I assume that this behaviour is because pytest is responsible for file collection. Is it possible to make pytest aware of this additional configuration or do I have to duplicate the configuration from black and use the appropriate keywords in the pytest settings?
I have a
pyproject.tomlwhich includes the configuration ofblack. It seems that changing options likeskip-string-normalizationchanges the test behaviour ofpytest-blackbut keywords likeincludeandexcludeare not recognized. I assume that this behaviour is becausepytestis responsible for file collection. Is it possible to makepytestaware of this additional configuration or do I have to duplicate the configuration fromblackand use the appropriate keywords in thepytestsettings?