1 Star 0 Fork 0

xiaotan2013/dagster

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
azure-pipelines.yml 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
gibsondan 提交于 2020-11-18 17:52 . add general_tests to windows tests
parameters:
- name: py3_versions
type: object
default:
- "3.6"
- "3.7"
- name: py3_env_suffixes
type: object
default:
- api_tests
- cli_tests
- core_tests
- general_tests
- daemon_tests
- scheduler_tests
jobs:
- job: "dagster"
pool:
vmImage: "vs2017-win2016"
strategy:
matrix:
${{ each py_version in parameters.py3_versions }}:
${{ each env_suffix in parameters.py3_env_suffixes }}:
${{ replace(py_version, '.', '') }}-windows-${{ env_suffix }}:
TOXENV: "py${{ replace(py_version, '.', '') }}-windows-${{ env_suffix }}"
python.version: "${{ py_version }}"
variables:
PYTHONLEGACYWINDOWSSTDIO: "1"
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: "$(python.version)"
architecture: "x64"
- script: choco install vcpython27 --yes
condition: eq(variables['python.version'], '2.7')
displayName: "Install vcpython27"
- script: pip install tox
displayName: "Install tox"
- script: cd python_modules\dagster && tox -e %TOXENV% && cd ..\..
displayName: "Run tests"
- task: PublishTestResults@2
inputs:
testResultsFiles: "**/test_results.xml"
testRunTitle: "dagster $(TOXENV)"
condition: succeededOrFailed()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaohan2013/dagster.git
git@gitee.com:xiaohan2013/dagster.git
xiaohan2013
dagster
dagster
master

搜索帮助