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

[skywalking-python] branch test/release created (now c8218ba)

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

kezhenxu94 pushed a change to branch test/release
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git.


      at c8218ba  Test release

This branch includes the following new commits:

     new c8218ba  Test release

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking-python] 01/01: Test release

Posted by ke...@apache.org.
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

commit c8218ba88d7134354552b97ab5b571bc6f2b839e
Author: kezhenxu94 <ke...@163.com>
AuthorDate: Sun Jun 28 23:00:31 2020 +0800

    Test release
---
 .github/workflows/build.yaml | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 69d871c..9b16bf0 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -28,7 +28,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        python-version: [3.5, 3.6, 3.7, 3.8]
+        python-version: 3.5
       fail-fast: false
     steps:
       - name: Checkout source codes
@@ -40,10 +40,12 @@ jobs:
         with:
           python-version: ${{ matrix.python-version }}
       - name: Set up dependencies
-        run: make setup install
-      - name: Lint codes
-        run: make lint
-      - name: Check license header
-        run: make license
-      - name: Run unit tests
-        run: make test
+        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)
+"