forked from glue-viz/glue-jupyter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
55 lines (43 loc) · 998 Bytes
/
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
resources:
repositories:
- repository: OpenAstronomy
type: github
endpoint: glue-viz
name: OpenAstronomy/azure-pipelines-templates
ref: master
trigger:
branches:
include:
- '*'
tags:
include:
- 'v*'
jobs:
- template: publish.yml@OpenAstronomy
parameters:
${{ if startsWith(variables['Build.SourceBranch'], 'refs/tags/v') }}:
pypi_connection_name: 'pypi_endpoint'
test_extras: test
test_command: pytest --pyargs glue_jupyter
targets:
- sdist
- wheels_universal
- template: run-tox-env.yml@OpenAstronomy
parameters:
coverage: codecov
envs:
- linux: codestyle
libraries: {}
coverage: 'false'
- linux: py36-test
- linux: py37-test
- macos: py36-test
- macos: py37-test
- windows: py36-test
- windows: py37-test
- linux: py37-notebooks
- macos: py37-notebooks
- windows: py36-notebooks
- linux: py37-docs
- macos: py37-docs
- windows: py36-docs