You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2020/06/08 15:38:06 UTC

[skywalking-python] branch master updated: Simplify the docker context path and rename test (#11)

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

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git


The following commit(s) were added to refs/heads/master by this push:
     new 3713421  Simplify the docker context path and rename test (#11)
3713421 is described below

commit 37134211fdbe4241b9141b2eaac8e2054b7f3098
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Mon Jun 8 23:37:59 2020 +0800

    Simplify the docker context path and rename test (#11)
---
 tests/plugin/http/{test_request.py => test_http.py} | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/tests/plugin/http/test_request.py b/tests/plugin/http/test_http.py
similarity index 91%
rename from tests/plugin/http/test_request.py
rename to tests/plugin/http/test_http.py
index 1619dd8..160879e 100644
--- a/tests/plugin/http/test_request.py
+++ b/tests/plugin/http/test_http.py
@@ -29,9 +29,7 @@ from tests.plugin import BasePluginTest
 class TestRequestPlugin(BasePluginTest):
     @classmethod
     def setUpClass(cls):
-        docker_dir = dirname(dirname(abspath(__file__)))
-
-        cls.compose = DockerCompose(filepath=os.path.join(docker_dir, 'http'))
+        cls.compose = DockerCompose(filepath=dirname(abspath(__file__)))
         cls.compose.start()
 
         cls.compose.wait_for(cls.url(cls.collector_address()))