Skip to content

Commit

Permalink
chore: 🤖 update all packages to support latest botocore (#46)
Browse files Browse the repository at this point in the history
* chore: 🤖 update all packages to support latest botocore

* test: 💍 update moto to use mock_aws
  • Loading branch information
DanielRDias committed Jan 29, 2024
1 parent 396f40d commit 948f31a
Show file tree
Hide file tree
Showing 6 changed files with 303 additions and 254 deletions.
11 changes: 8 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ help: ## Show available commands

.PHONY: setup
setup: ## Set up dependencies
echo python version: $$(which python3.9)
echo python version: $$(which python3.10)
@(PIPENV_VERBOSITY=-1 pipenv --venv && PIPENV_VERBOSITY=-1 PIPENV_VENV_IN_PROJECT=1 pipenv --rm) || true >/dev/null
CFLAGS=$(CFLAGS) LC_ALL=$(LC_ALL) LANG=$(LANG) PIPENV_VENV_IN_PROJECT=1 pipenv sync --dev --python=$$(which python3.9)
CFLAGS=$(CFLAGS) LC_ALL=$(LC_ALL) LANG=$(LANG) PIPENV_VENV_IN_PROJECT=1 pipenv sync --dev --python=$$(which python3.10)
npm install

.PHONY: deploy
Expand All @@ -41,4 +41,9 @@ test:

.PHONY: test-log
test-log:
pipenv run pytest --cov-report term-missing --cov -vs --log-cli-level info
pipenv run pytest --cov-report term-missing --cov -vs --log-cli-level info

.PHONY: requirements
requirements: ## Create requirements.txt
pipenv requirements > requirements.txt
pipenv requirements --dev > requirements-dev.txt
Loading

0 comments on commit 948f31a

Please sign in to comment.