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 <[email protected]> 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) +"
