diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index ca7b3ae..7038309 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -26,10 +26,6 @@ jobs: python -m pip install --upgrade pip pip install -r requirements.txt - - name: Python unit tests - run: python -m unittest - working-directory: src - # There appears to be a bug around # `nextmv-io/sdk@v1.8.0/golden/file.go:75` specifically in Windows. When # attempting to remove a temp file, the following error is encountered: @@ -44,6 +40,10 @@ jobs: with: go-version: ${{ env.GO_VERSION }} + - name: Python unit tests + run: python -m unittest + working-directory: src + - name: golden file tests from Python package if: ${{ matrix.platform != 'windows-latest' }} run: go test $(go list ./... | grep github.com/nextmv-io/nextroute/src)