Skip to content

Commit

Permalink
chore(release): release 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbrewer committed Mar 30, 2022
1 parent c94c76c commit 120a63a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 14 deletions.
5 changes: 4 additions & 1 deletion event-schema/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,14 @@ and see the official docs on [AWS Lambda Shareable test events](https://docs.aws

## Recent changes

### 0.15.0

- Add `--filtered-list` argument to `generate-test-event`

### 0.14.0

- Add `alexa-skills-kit` sample events


### 0.13.0

- Fix packaging to include `generate_test_event`
Expand Down
4 changes: 2 additions & 2 deletions event-schema/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "aws-lambda-publish-shared-event"
version = "0.14.0"
description = "Creating Shareable test events"
version = "0.15.0"
description = "Creating Shareable Lambda Test Events"
license = "MIT"
authors = ["Michael Brewer"]

Expand Down
2 changes: 1 addition & 1 deletion event-schema/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="aws-lambda-publish-shared-event",
version="0.14.0",
version="0.15.0",
entry_points={
"console_scripts": [
"publish-shared-event=aws_lambda_publish_shared_event.__main__:main",
Expand Down
10 changes: 0 additions & 10 deletions event-schema/tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,6 @@
AWS_REGION = "us-east-1"


def test_parse_args_help(capsys):
sys.argv = [SCRIPT_NAME, "--help"]

with pytest.raises(SystemExit):
__main__.main()

captured = capsys.readouterr()
assert captured.out.startswith("usage:")


@pytest.mark.parametrize("argument", ["-h", "--help"])
def test_parse_args_help(capsys, argument: str):
# GIVEN
Expand Down

0 comments on commit 120a63a

Please sign in to comment.