This is an automated email from the ASF dual-hosted git repository.
kezhenxu94 pushed a commit to branch test/release
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git
The following commit(s) were added to refs/heads/test/release by this push:
new 90eeae8 Test
90eeae8 is described below
commit 90eeae889b01eb178ead733e4187395a99f87d08
Author: kezhenxu94 <[email protected]>
AuthorDate: Sun Jun 28 23:03:49 2020 +0800
Test
---
.github/workflows/build.yaml | 7 +------
test.py | 7 +++++++
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 9293a91..970cc0a 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -41,9 +41,4 @@ jobs:
run: |
pip install grpcio grpcio-tools
pip install -i https://test.pypi.org/simple/ skywalking==0.1.20
- python -c "from skywalking import agent, config
-import time
-config.init(collector='127.0.0.1:11800', service='your awesome service')
-agent.start()
-time.sleep(3)
-"
+ python test.py
diff --git a/test.py b/test.py
new file mode 100644
index 0000000..9640b47
--- /dev/null
+++ b/test.py
@@ -0,0 +1,7 @@
+from skywalking import agent, config
+import time
+
+config.init(collector='127.0.0.1:11800', service='your awesome service')
+agent.start()
+
+time.sleep(3)