Skip to content

Commit dcbe08b

Browse files
committed
Merge branch 'develop' into docs/feature-toggle-examples
* develop: chore: only build docs on docs path refactor(feature-flags): add debug for all features evaluation" (#590) chore: enable autolabel based on PR title chore(deps-dev): bump pdoc3 from 0.9.2 to 0.10.0 (#584)
2 parents 1dabcd9 + b8423ce commit dcbe08b

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/python_docs.yml

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
push:
55
branches:
66
- develop
7+
paths:
8+
- 'docs/**'
9+
- 'CHANGELOG.md'
10+
- 'mkdocs.yml'
711

812
jobs:
913
docs:

aws_lambda_powertools/utilities/feature_flags/feature_flags.py

+1
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ def get_enabled_features(self, *, context: Optional[Dict[str, Any]] = None) -> L
237237
logger.debug(f"Failed to fetch feature flags from store, returning empty list, reason={err}")
238238
return features_enabled
239239

240+
logger.debug("Evaluating all features")
240241
for name, feature in features.items():
241242
rules = feature.get(schema.RULES_KEY, {})
242243
feature_default_value = feature.get(schema.FEATURE_DEFAULT_VAL_KEY)

poetry.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ flake8-variables-names = "^0.0.4"
4242
isort = "^5.9.3"
4343
pytest-cov = "^2.12.1"
4444
pytest-mock = "^3.5.1"
45-
pdoc3 = "^0.9.2"
45+
pdoc3 = "^0.10.0"
4646
pytest-asyncio = "^0.15.1"
4747
bandit = "^1.7.0"
4848
radon = "^4.5.0"

0 commit comments

Comments
 (0)