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 has been archived by the owner on Nov 23, 2023. It is now read-only.
Relying on the configuration file being in the home directory makes some things (e.g. behaviour on missing sections) difficult to test as it's impossible to know what's in the configuration file at test time. Being able to specify a differen't location (or something similar) would make testing things easier (and could have other benefits).
Fortunately there are a few ways of implementing this without breaking backwards compatibility:
implement a way to override configuration settings from within python code,
use a default (documented) set of locations to search for configuration files.
The text was updated successfully, but these errors were encountered:
Relying on the configuration file being in the home directory makes some things (e.g. behaviour on missing sections) difficult to test as it's impossible to know what's in the configuration file at test time. Being able to specify a differen't location (or something similar) would make testing things easier (and could have other benefits).
Fortunately there are a few ways of implementing this without breaking backwards compatibility:
The text was updated successfully, but these errors were encountered: