Skip to content

Commit

Permalink
Change python test workflow order to meet new go dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
merschformann committed Dec 20, 2024
1 parent ba8702d commit 2fdc7ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]/golden/file.go:75` specifically in Windows. When
# attempting to remove a temp file, the following error is encountered:
Expand All @@ -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)

0 comments on commit 2fdc7ba

Please sign in to comment.