Skip to content

Commit

Permalink
Provide feedback during manifest application (#11)
Browse files Browse the repository at this point in the history
* docs: add a docstring for EventObserver.register()

Signed-off-by: hqdncw <hqdncw@gmail.com>

* refactor: reorganize code

Signed-off-by: hqdncw <hqdncw@gmail.com>

* refactor: improve readability

Signed-off-by: hqdncw <hqdncw@gmail.com>

* feat: display workflow logs during manifest application

Refs: #6
Signed-off-by: hqdncw <hqdncw@gmail.com>

---------

Signed-off-by: hqdncw <hqdncw@gmail.com>
  • Loading branch information
hqdncw authored Feb 8, 2024
1 parent c42dc59 commit c779f08
Show file tree
Hide file tree
Showing 36 changed files with 1,283 additions and 526 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ repos:
- "click~=8.1.7"
- "pydantic~=2.4.2"
- "ruamel.yaml~=0.18.5"
- "humanize~=4.9.0"

- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ keywords = [
# https://pypi.org/classifiers/
classifiers = [
"License :: OSI Approved :: MIT License",
# https://martin-thoma.com/software-development-stages/
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Framework :: AsyncIO",
Expand All @@ -33,6 +34,7 @@ dependencies = [
"lazy-object-proxy~=1.9.0",
"networkx~=3.2.1",
"ironfence~=0.1.0",
"humanize~=4.9.0",
# TODO: temporary dependencies
"jinja2~=3.1.3",
]
Expand Down
2 changes: 1 addition & 1 deletion src/vault_autopilot/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ruamel.yaml.error import YAMLError

from vault_autopilot import _conf, util
from vault_autopilot._cli.apply import apply
from vault_autopilot._cli.commands.apply import apply
from vault_autopilot._cli.exc import ConfigSyntaxError, ConfigValidationError

ConfigOption = Optional[pathlib.Path]
Expand Down
193 changes: 0 additions & 193 deletions src/vault_autopilot/_cli/apply.py

This file was deleted.

Loading

0 comments on commit c779f08

Please sign in to comment.