From 43872dfcfe6a5712dc7b17ee2126fc1888071ad9 Mon Sep 17 00:00:00 2001 From: lidong Date: Wed, 5 Jun 2024 00:08:43 +0800 Subject: [PATCH] pip install for test --- .github/workflows/pythonpackage.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 12b5934..cea06d1 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -18,6 +18,10 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install . - name: Test with pytest run: | pip install pytest @@ -36,6 +40,10 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install . - name: Test with pytest run: | pip install pytest @@ -54,6 +62,10 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install . - name: Test with pytest run: | pip install pytest