PROGramatic conFIGURATION for your infrastructure
Project description
progfiguration
PROGrammatic conFIGURATION. I'm tired of writing YAML when what I want to write is Python.
Development
Make and activate a venv, and install as editable.
python3 -m venv venv
. venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install --editable '.[development]'
From there:
progfiguration --help
to run the programinvoke -l
to list tasks for building documentation, running tests, and making releases
Building and releasing
We only actually need to build a source version of the package, because progfiguration expects that your progfigsite package will pull in the source code. We avoid building the binary version because it takes longer.
Testing
Run tests with invoke tests
.
Run with --slow
to run slow tests too.
Special environment variables:
PROGFIGURATION_TEST_DEBUG=1
: Launch a debugger on any test failure or exceptionPROGFIGURATION_TEST_SLOW_ALL=1
: Run all slow tests (same asinvoke tests --slow
)PROGFIGURATION_TEST_SLOW_PACKAGING=1
: Run just slow tests related to packaging (progfiguration build
, etc)
Building the example sites
In the same venv as above:
# Install the example progfigsite
python3 -m pip install --editable 'tests/data/simple[development]'
# Run the progfigsite itself
progfigsite --help
Making a release
- Check out the
master
branch. Make sure your checkout is clean, with all changes committed to git and pushed to Github - Set the version in
pyproject.toml
and updatedocs/appendix/changelog.rst
. Don't commit the change yet. We'll read this file to determine the version to tag in git and push to PyPI.- This will require Python 3.11 because we parse the TOML file directly with
tomllib
. - We can't use
progfiguration version
for this because it will return the version as it was at install time.
- This will require Python 3.11 because we parse the TOML file directly with
- Run
invoke make-release
The documentation will be updated with the lastest version number and content as well via Github Actions.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.