Skip to content

Commit

Permalink
makefile integration target to submit all the integration payloads
Browse files Browse the repository at this point in the history
  • Loading branch information
jhkennedy committed Mar 26, 2024
1 parent 8e1dda4 commit 1b7b57b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ test_file ?= 'tests/'
test:
pytest $(test_file)

integration:
export AWS_PAGER='' && \
$(foreach file, $(wildcard tests/integration/*.json), aws sns publish --profile saml-pub --topic-arn arn:aws:sns:us-west-2:986442313181:its-live-notify-test --message file://${file} --output json;)

static: ruff-check cfn-lint

ruff-check:
Expand Down

0 comments on commit 1b7b57b

Please sign in to comment.