Add a base class for CI configuration forms.

Review Request #13866 — Created May 19, 2024 and submitted — Latest diff uploaded

Information

rbintegrations
release-4.x

Reviewers

We had a couple of form fields that were common to all CI configuration
forms, and have another one coming shortly. To avoid continuing to
duplicate fields, and to ease the development of new CI integrations,
this change introduces a new BaseCIIntegrationConfigForm class that
can house these fields.

All CI integrations now use this form as a base. The Travis-CI
integration does need to override the conditions field in order to
limit to GitHub repositories, but inherits everything else.

Unit tests pass.

Tested each CI configuration form.

Diff Revision 2 (Latest)

orig
1
2

Commits

First Last Summary ID Author
Add a base class for CI configuration forms.
We had a couple of form fields that were common to all CI configuration forms, and have another one coming shortly. To avoid continuing to duplicate fields, and to ease the development of new CI integrations, this change introduces a new `BaseCIIntegrationConfigForm` class that can house these fields. All CI integrations now use this form as a base. The Travis-CI integration does need to override the `conditions` field in order to limit to GitHub repositories, but inherits everything else.
a35b7a5ad6f273a60c90ca923acb17beca7a6ec7 Christian Hammond
rbintegrations/baseci/forms.py
rbintegrations/circleci/forms.py
rbintegrations/jenkinsci/forms.py
rbintegrations/travisci/forms.py
Loading...