File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010
1111VENV_RUN = . $(VENV_ACTIVATE )
1212
13- venv : $(VENV_ACTIVATE )
13+ venv :
14+ test -d $(VENV_DIR ) || $(VENV_BIN ) $(VENV_DIR )
15+ ($( VENV_RUN) ; $( PIP_CMD) install --upgrade pip; $( PIP_CMD) install -e .)
1416
1517format : venv # # Run ruff and black to format the whole codebase
1618 ($( VENV_RUN) ; python -m ruff check --show-source --fix . ; python -m black .)
@@ -19,7 +21,7 @@ lint: venv ## Run code linter to check code style and check if formatte
1921 ($( VENV_RUN) ; python -m ruff check --show-source . && python -m black --check .)
2022
2123install : venv
22- $(VENV_RUN ) ; $(PIP_CMD ) install -e .
24+ $(VENV_RUN ) ; $(PIP_CMD ) install -e
2325
2426test : venv # # Run tests
2527 ($( VENV_RUN) ; python -m pytest -v --cov=plux --cov-report=term-missing --cov-report=xml tests)
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ description = Utils for testing with LocalStack
44version = attr: localstack_utils.__version__
55author = Cristopher Pinzon
66author_email = cristopher.pinzon@localstack.cloud
7+ url = https://github.com/localstack/localstack-python-utils
78summary = LocalStack Utils for testing
89long_description = file: README.md
910long_description_content_type = text/markdown; charset=UTF-8
You can’t perform that action at this time.
0 commit comments