Skip to content

Commit 7522fbf

Browse files
committed
fix: resolve failed checks
1 parent 7c4d4c8 commit 7522fbf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ IMAGE = testcontainers-python:${PYTHON_VERSION}
66
PACKAGES = core $(addprefix modules/,$(notdir $(wildcard modules/*)))
77

88
UPLOAD = $(addsuffix /upload,${PACKAGES})
9-
TESTS = $(addsuffix /tests,$(filter-out meta,$(filter-out %.md %.txt,${PACKAGES})))
9+
TESTS = $(addsuffix /tests,$(filter-out meta,${PACKAGES}))TESTS_DIND = $(addsuffix -dind,${TESTS})
1010
TESTS_DIND = $(addsuffix -dind,${TESTS})
1111
DOCTESTS = $(addsuffix /doctests,$(filter-out modules/README.md,${PACKAGES}))
1212

13+
1314
install: ## Set up the project for development
1415
poetry install --all-extras
1516
poetry run pre-commit install

0 commit comments

Comments
 (0)