From 07cf60ba593400fb72f6107398f6770a4a7bdaa7 Mon Sep 17 00:00:00 2001 From: erik Date: Wed, 12 Jul 2023 13:35:36 +0200 Subject: [PATCH] Remove unnecessary test --- src/test/python/domain/test_image.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/test/python/domain/test_image.py b/src/test/python/domain/test_image.py index 45ca8ad..329d6d7 100644 --- a/src/test/python/domain/test_image.py +++ b/src/test/python/domain/test_image.py @@ -1,4 +1,5 @@ from pybuilder.core import Project +import logging from subprocess import Popen, PIPE, run from pathlib import Path from src.main.python.ddadevops.domain import ( @@ -13,12 +14,3 @@ def test_devops_build_commons_path(): assert image is not None assert image.is_valid() assert "docker/" == image.build_commons_path() - -def test_docker_fails_with_error_msg(): - output = run( - f"docker build asdfsdf", - shell=True, - check=True, - stderr=PIPE, - text=True - ).stderr