From 41f0fc206261f96a907a9889528eb63e97875cfd Mon Sep 17 00:00:00 2001 From: ideoutrea Date: Wed, 6 Mar 2024 19:13:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=87=AA=E5=8A=A8=E5=8C=96?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E9=89=B4=E6=9D=83Token?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/python-package.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 14a4e65b7..557f64d3d 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.8"] steps: - uses: actions/checkout@v3 @@ -36,5 +36,8 @@ jobs: # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest - run: | - pytest + env: + APPBUILDER_TOKEN: ${{ secrets.APPBUILDER_TOKEN }} + run: | + # 忽略retriever组件 + pytest --ignore ./appbuilder/tests/test_bes_retriever.py