Skip to content

Commit c6e77dc

Browse files
committed
make file improvements and correct url for project repo
1 parent d758061 commit c6e77dc

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ endif
1010

1111
VENV_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

1517
format: 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

2123
install: venv
22-
$(VENV_RUN); $(PIP_CMD) install -e .
24+
$(VENV_RUN); $(PIP_CMD) install -e
2325

2426
test: venv ## Run tests
2527
($(VENV_RUN); python -m pytest -v --cov=plux --cov-report=term-missing --cov-report=xml tests)

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ description = Utils for testing with LocalStack
44
version = attr: localstack_utils.__version__
55
author = Cristopher Pinzon
66
author_email = cristopher.pinzon@localstack.cloud
7+
url = https://github.com/localstack/localstack-python-utils
78
summary = LocalStack Utils for testing
89
long_description = file: README.md
910
long_description_content_type = text/markdown; charset=UTF-8

0 commit comments

Comments
 (0)