"docs/vscode:/vscode.git/clone" did not exist on "e3952ecacd5b8fbef954b2c5d587dbeac3679164"
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:
# This platform runs TypeScript unit test first.
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: 3.8
displayName: Configure Python
- script: |
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]${PYTHON38_BIN_DIR}:${HOME}/Library/Python/3.8/bin:${PATH}"
python3 -m pip install -U --upgrade pip setuptools
python3 -m pip install -U pytest coverage
echo "##vso[task.setvariable variable=PATH]${PATH}:${HOME}/.local/bin"
python -m pip install -U --upgrade pip setuptools wheel
python -m pip install -U pytest coverage
displayName: 'Install Python tools'
- script: |
......@@ -145,10 +149,9 @@ jobs:
- script: |
set -e
cd ts/nni_manager
yarn test
cd ../nasui
CI=true yarn test
export CI=true
(cd ts/nni_manager && yarn test)
(cd ts/nasui && yarn test)
displayName: 'TypeScript unit test'
- 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