From 051ecf23d6188cec1919cb9510c65e158a17c87e Mon Sep 17 00:00:00 2001 From: Wey Gu Date: Wed, 10 Jan 2024 16:27:10 +0800 Subject: [PATCH] chore: comments for py3.6 build from source ci --- .github/workflows/run_test.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run_test.yaml b/.github/workflows/run_test.yaml index ee70fd7a..81eaecef 100644 --- a/.github/workflows/run_test.yaml +++ b/.github/workflows/run_test.yaml @@ -9,10 +9,11 @@ on: - cron: "0 6 * * *" jobs: - ci-pip-install: + ci-pip-install-from-source: + # This is to verify the setup.py as a mitigation for remain python 3.6.2+ capability runs-on: ubuntu-20.04 strategy: - max-parallel: 1 + max-parallel: 2 matrix: python-version: [3.6, 3.7] steps: @@ -21,11 +22,11 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Install dependencies + - name: Install nebulagraph-python from source and test dependencies run: | python setup.py install pip install pip-tools pytest - - name: Test with pytest==6.2.5 + - name: Test with pytest run: | docker-compose -f docker-compose.yaml up -d sleep 20