Remove unnecessary test
This commit is contained in:
parent
8cb17dea54
commit
07cf60ba59
1 changed files with 1 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue