-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Lambda to requeue undownloaded granules (#35)
Fixes #31
- Loading branch information
1 parent
21a1283
commit 5f10f4c
Showing
14 changed files
with
1,920 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.PHONEY: clean install lint format test | ||
|
||
clean: | ||
pipenv --rm || true | ||
|
||
install: | ||
pipenv install --dev | ||
|
||
lint: | ||
pipenv run flake8 . | ||
pipenv run isort --check-only --profile black . | ||
pipenv run black --check --diff . | ||
|
||
format: | ||
pipenv run isort --profile black *.py tests/ | ||
pipenv run black *.py tests/ | ||
|
||
test: | ||
pipenv run pytest -v --cov=handler --cov-report term-missing tests/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[packages] | ||
boto3 = "*" | ||
iso8601 = "*" | ||
|
||
[dev-packages] | ||
alembic = "*" | ||
black = "*" | ||
boto3-stubs = {extras = ["lambda", "sqs", "secretsmanager"], version = "*"} | ||
db = {editable = true, path = "./../../layers/db"} | ||
flake8 = "*" | ||
isort = "*" | ||
moto = "*" | ||
mypy = "*" | ||
psycopg2 = "*" | ||
pytest = "*" | ||
pytest-cov = "*" | ||
pytest-docker = "*" | ||
|
||
[requires] | ||
python_version = "3.8" |
Oops, something went wrong.