You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by oc...@apache.org on 2019/12/19 21:45:16 UTC

[trafficcontrol] branch master updated: Add TM dir to TO-Go unit test container (#4226)

This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
     new 8d07f40  Add TM dir to TO-Go unit test container (#4226)
8d07f40 is described below

commit 8d07f40d1752987b15aa56acd5ce63c59e1770de
Author: Rawlin Peters <ra...@apache.org>
AuthorDate: Thu Dec 19 14:45:04 2019 -0700

    Add TM dir to TO-Go unit test container (#4226)
    
    A newly re-written TO API route uses structs from the TM packages.
---
 traffic_ops/app/bin/tests/Dockerfile-golangtest | 1 +
 1 file changed, 1 insertion(+)

diff --git a/traffic_ops/app/bin/tests/Dockerfile-golangtest b/traffic_ops/app/bin/tests/Dockerfile-golangtest
index e33781f..17caf43 100644
--- a/traffic_ops/app/bin/tests/Dockerfile-golangtest
+++ b/traffic_ops/app/bin/tests/Dockerfile-golangtest
@@ -17,6 +17,7 @@ ARG DIR=github.com/apache/trafficcontrol
 
 ADD traffic_ops /go/src/$DIR/traffic_ops
 ADD lib /go/src/$DIR/lib
+ADD traffic_monitor /go/src/$DIR/traffic_monitor
 ADD vendor /go/src/$DIR/vendor
 
 WORKDIR /go/src/$DIR/traffic_ops/traffic_ops_golang