mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-28 10:45:07 +00:00
4a373be939
* Bump black from 23.1.0 to 24.3.0 Bumps [black](https://github.com/psf/black) from 23.1.0 to 24.3.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/23.1.0...24.3.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * fixed pre commit black issues w/ burnettk --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jasquat <jasquat@users.noreply.github.com>
22 lines
631 B
Python
22 lines
631 B
Python
"""Grabs tickets from csv and makes process instances."""
|
|
|
|
import os
|
|
|
|
from spiffworkflow_backend import create_app
|
|
from spiffworkflow_backend.services.data_setup_service import DataSetupService
|
|
|
|
|
|
def main() -> None:
|
|
"""Main."""
|
|
app = create_app()
|
|
with app.app_context():
|
|
failing_process_models = DataSetupService.save_all_process_models()
|
|
for bpmn_errors in failing_process_models:
|
|
print(bpmn_errors)
|
|
if os.environ.get("SPIFFWORKFLOW_BACKEND_FAIL_ON_INVALID_PROCESS_MODELS") != "false" and len(failing_process_models) > 0:
|
|
exit(1)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|