|
@@ -217,7 +217,7 @@ class FrameworkTest:
|
|
|
"-f",
|
|
|
docker_file,
|
|
|
"-t",
|
|
|
- dependency,
|
|
|
+ "tfb/%s" % dependency,
|
|
|
os.path.dirname(docker_file)],
|
|
|
stdout=subprocess.PIPE,
|
|
|
stderr=subprocess.STDOUT)
|
|
@@ -243,7 +243,7 @@ class FrameworkTest:
|
|
|
"-f",
|
|
|
test_docker_file,
|
|
|
"-t",
|
|
|
- "tfb-test-%s" % self.name,
|
|
|
+ "tfb/test/%s" % self.name,
|
|
|
self.directory],
|
|
|
stdout=subprocess.PIPE,
|
|
|
stderr=subprocess.STDOUT)
|
|
@@ -264,7 +264,7 @@ class FrameworkTest:
|
|
|
##########################
|
|
|
# Run the Docker container
|
|
|
##########################
|
|
|
- p = subprocess.Popen(["docker", "run", "--rm", "-p", "%s:%s" % (self.port, self.port), "--network=host", "tfb-test-%s" % self.name],
|
|
|
+ p = subprocess.Popen(["docker", "run", "--rm", "-p", "%s:%s" % (self.port, self.port), "--network=host", "tfb/test/%s" % self.name],
|
|
|
stdout=subprocess.PIPE,
|
|
|
stderr=subprocess.STDOUT)
|
|
|
nbsr = setup_util.NonBlockingStreamReader(p.stdout,
|