Skip to content
Prev Previous commit
Next Next commit
fix issues after merge
  • Loading branch information
mndeveci committed Jan 24, 2022
commit bce2d1a45e12138a0c3f1480eaa33ba528ecd74b
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ init:
test:
# Run unit tests
# Fail if coverage falls below 94%
LAMBDA_BUILDERS_DEV=1 pytest --cov aws_lambda_builders --cov-report term-missing --cov-fail-under 94 tests/unit tests/functional
LAMBDA_BUILDERS_DEV=1 pytest -vv --cov aws_lambda_builders --cov-report term-missing --cov-fail-under 94 tests/unit tests/functional

func-test:
LAMBDA_BUILDERS_DEV=1 pytest tests/functional
Expand Down
2 changes: 1 addition & 1 deletion aws_lambda_builders/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def build(
:type is_building_layer: bool
:param is_building_layer:
Boolean flag which will be set True if current build operation is being executed for layers

:type experimental_flags: list
:param experimental_flags:
List of strings, which will indicate enabled experimental flags for the current build session
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ def test_with_mocks(
is_building_layer,
experimental_flags,
get_workflow_mock,
importlib_mock,
os_mock,
):
workflow_cls = Mock()
Expand Down