From 44e3c89803846d75017507322d4c742c37208e7d Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Sat, 18 Jan 2025 11:14:37 +0100 Subject: [PATCH] avoid pulling outdated container images in `mototest` make target --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 7ba9b3d8..0e40d511 100644 --- a/Makefile +++ b/Makefile @@ -17,8 +17,6 @@ cov cover coverage: pre-commit @echo "open file://`pwd`/htmlcov/index.html" mototest: - docker pull alpine - docker pull lambci/lambda:python3.8 python -Wd -X tracemalloc=5 -X faulthandler -m pytest -vv -m "not localonly" -n auto --cov-report term --cov-report html --cov-report xml --cov=aiobotocore --cov=tests --log-cli-level=DEBUG $(FLAGS) aiobotocore tests @echo "open file://`pwd`/htmlcov/index.html"