forked from pymc-devs/pymc4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
56 lines (46 loc) · 1.43 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
trigger:
- master
pool:
vmImage: "ubuntu-latest"
strategy:
matrix:
Python36:
python.version: "3.6"
Python37:
python.version: "3.7"
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: "$(python.version)"
displayName: "Use Python $(python.version)"
- script: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install -r requirements-dev.txt
python -m pip freeze
displayName: "Install dependencies"
# - script: |
# python -m pydocstyle --convention=numpy pymc4/ tests/
# displayName: "pydocstyle"
- script: |
python -m black --check pymc4/ tests/
displayName: "black"
- script: |
python -m mypy --ignore-missing-imports pymc4/
displayName: "mypy"
- script: |
python -m pylint pymc4/ tests/
displayName: "pylint"
- script: |
python -m pip install pytest-azurepipelines
python -m pytest -xv --cov pymc4 --junitxml=junit/test-results.xml --cov-report xml --cov-report term --cov-report html .
displayName: "pytest"
- script: |
python -m pip install ipykernel nbconvert
python -m ipykernel install --name pymc4-dev --user
make notebooks
displayName: "notebooks"
- script: |
bash <(curl -s https://codecov.io/bash) -n "$(NAME)" -C $BUILD_SOURCEVERSION
displayName: "Publish test results to codecov for Python $(python.version)"
condition: succeededOrFailed()