Skip to content

Commit

Permalink
ci: fix legacy utils name
Browse files Browse the repository at this point in the history
  • Loading branch information
tanloong committed Jul 23, 2024
1 parent a5ffe57 commit 2ef2774
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
python -m pip install --upgrade pip
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m utils.ns_download_models
python -m scripts.ns_download_models
export SHELL=bash
shell: bash
- name: Install missing libs on Ubuntu
Expand All @@ -47,7 +47,7 @@ jobs:
python -m pip install --upgrade pip
if (Test-Path -Path '.\requirements-dev.txt' -PathType Leaf) {pip install --upgrade -r requirements-dev.txt}
if (Test-Path -Path '.\requirements.txt' -PathType Leaf) {pip install --upgrade -r requirements.txt}
python -m utils.ns_download_models
python -m scripts.ns_download_models
shell: pwsh
- name: Build dist and test with unittest on macOS and Linux
if: matrix.os != 'windows-latest'
Expand Down

0 comments on commit 2ef2774

Please sign in to comment.