queue: name: Hosted Ubuntu 1604 timeoutInMinutes: 30 trigger: batch: true branches: include: - master variables: python.version: '3.7' steps: - task: UsePythonVersion@0 displayName: 'Use Python $(python.version)' inputs: versionSpec: '$(python.version)' - script: 'azure/install_dependencies.sh && pip install .' displayName: 'Install dependencies' - script: 'python tools/training-benchmark.py ./dataset/ani_gdb_s01.h5' displayName: Training Benchmark - script: 'python tools/neurochem-test.py ./dataset/ani_gdb_s01.h5' displayName: NeuroChem Test - script: 'python tools/inference-benchmark.py --tqdm ./xyz_files/CH4-5.xyz' displayName: Inference Benchmark