full-test-windows.yml 1.55 KB
Newer Older
liuzhe-lz's avatar
liuzhe-lz committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
trigger: none
pr: none
schedules:
- cron: 0 16 * * *
  branches:
    include: [ master ]

jobs:
- job: local_windows
  pool: NNI CI WINDOWS2
  timeoutInMinutes: 120

  steps:
  - script: |
J-shang's avatar
J-shang committed
15
      python -m pip install --upgrade pip setuptools wheel
16
      python -m pip install pytest
liuzhe-lz's avatar
liuzhe-lz committed
17
    displayName: Install Python tools
18

liuzhe-lz's avatar
liuzhe-lz committed
19
20
21
22
23
  - script: |
      python -m pip uninstall nni --yes
      set NNI_RELEASE=999.0
      python setup.py build_ts
      python setup.py bdist_wheel -p win_amd64
24
      python -m pip install dist/nni-999.0-py3-none-win_amd64.whl[PPOTuner]
liuzhe-lz's avatar
liuzhe-lz committed
25
    displayName: Install NNI
26

liuzhe-lz's avatar
liuzhe-lz committed
27
  - script: |
28
      python -m pip install scikit-learn==0.24.1
29
      python -m pip install keras==2.1.6
J-shang's avatar
J-shang committed
30
31
      python -m pip install torch==1.6.0 torchvision==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html
      python -m pip install 'pytorch-lightning>=1.1.1,<1.2'
32
      python -m pip install tensorflow==2.3.1 tensorflow-estimator==2.3.0
liuzhe-lz's avatar
liuzhe-lz committed
33
    displayName: Install extra dependencies
34

J-shang's avatar
J-shang committed
35
36
37
38
39
40
  # Need del later
  - script: |
      set -e
      python interim_vision_patch.py
    displayName: Vision MNIST Patch

liuzhe-lz's avatar
liuzhe-lz committed
41
42
43
  - script: |
      cd examples/tuners/customized_tuner
      python setup.py develop --user
44
      nnictl algo register --meta meta_file.yml
liuzhe-lz's avatar
liuzhe-lz committed
45
    displayName: Install example customized tuner
46

liuzhe-lz's avatar
liuzhe-lz committed
47
48
49
50
51
52
  - script: |
      cd test
      python -m pytest ut
      echo "TODO: TypeScript UT"
    displayName: Unit test
    continueOnError: true
53

liuzhe-lz's avatar
liuzhe-lz committed
54
55
56
57
  - script: |
      cd test
      python nni_test/nnitest/run_tests.py --config config/integration_tests.yml --ts local
    displayName: Integration test