Unverified Commit 291bbbba authored by liuzhe-lz's avatar liuzhe-lz Committed by GitHub
Browse files

Fix macOS unit test pipeline (#3098)

parent a3d22aea
...@@ -131,12 +131,16 @@ jobs: ...@@ -131,12 +131,16 @@ jobs:
# This platform runs TypeScript unit test first. # This platform runs TypeScript unit test first.
steps: steps:
- task: UsePythonVersion@0
inputs:
versionSpec: 3.8
displayName: Configure Python
- script: | - script: |
set -e set -e
export PYTHON38_BIN_DIR=/usr/local/Cellar/python@3.8/`ls /usr/local/Cellar/python@3.8`/bin echo "##vso[task.setvariable variable=PATH]${PATH}:${HOME}/.local/bin"
echo "##vso[task.setvariable variable=PATH]${PYTHON38_BIN_DIR}:${HOME}/Library/Python/3.8/bin:${PATH}" python -m pip install -U --upgrade pip setuptools wheel
python3 -m pip install -U --upgrade pip setuptools python -m pip install -U pytest coverage
python3 -m pip install -U pytest coverage
displayName: 'Install Python tools' displayName: 'Install Python tools'
- script: | - script: |
...@@ -145,10 +149,9 @@ jobs: ...@@ -145,10 +149,9 @@ jobs:
- script: | - script: |
set -e set -e
cd ts/nni_manager export CI=true
yarn test (cd ts/nni_manager && yarn test)
cd ../nasui (cd ts/nasui && yarn test)
CI=true yarn test
displayName: 'TypeScript unit test' displayName: 'TypeScript unit test'
- script: | - script: |
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment