Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Windows CI #674

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
UnitTests
ChengYen-Tang committed Feb 2, 2020
commit 1b1b0912e6caa17a6fbdd3a06f24899734d7ab37
39 changes: 37 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -7,6 +7,41 @@ variables:
jobs:
- template: azure_templates/run-test.yml
parameters:
name: 'UnitTests_a_h'
name: 'UnitTests_a_d'
PYTHON_VERSION: $(PYTHON_VERSION)
GLOB: '[a-h]*'
GLOB: '[a-d]*'
- template: azure_templates/run-test.yml
parameters:
name: 'UnitTests_e_h'
PYTHON_VERSION: $(PYTHON_VERSION)
GLOB: '[e-h]*'
- template: azure_templates/run-test.yml
parameters:
name: 'UnitTests_i_lo'
PYTHON_VERSION: $(PYTHON_VERSION)
GLOB: '[i-lo]*'
- template: azure_templates/run-test.yml
parameters:
name: 'UnitTests_lp_lz'
PYTHON_VERSION: $(PYTHON_VERSION)
GLOB: '[lp-lz]*'
- template: azure_templates/run-test.yml
parameters:
name: 'UnitTests_m_r'
PYTHON_VERSION: $(PYTHON_VERSION)
GLOB: '[m-r]*'
- template: azure_templates/run-test.yml
parameters:
name: 'UnitTests_sa'
PYTHON_VERSION: $(PYTHON_VERSION)
GLOB: 'sa*'
- template: azure_templates/run-test.yml
parameters:
name: 'UnitTests_sb_z'
PYTHON_VERSION: $(PYTHON_VERSION)
GLOB: '[sb-z]*'
- template: azure_templates/run-test.yml
parameters:
name: 'UnitTests_determinism'
PYTHON_VERSION: $(PYTHON_VERSION)
GLOB: '0deterministic.py'
2 changes: 1 addition & 1 deletion azure_templates/install-python-package.yml
Original file line number Diff line number Diff line change
@@ -3,5 +3,5 @@ steps:
python -m pip install --upgrade pip --user
python -m pip install --upgrade setuptools
python -m pip install tensorflow==1.14.0
python -m pip install -e .[mpi,tests]
python -m pip install -e .[mpi,tests,docs]
displayName: 'Install python package'