-
Notifications
You must be signed in to change notification settings - Fork 18
/
config.yml
90 lines (80 loc) · 1.51 KB
/
config.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
"unit-2.7":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: nox -s unit-2.7
"unit-3.6":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: nox -s unit-3.6
"unit-3.7":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: nox -s unit-3.7
"unit-3.8":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: nox -s unit-3.8
"unit-3.9":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: nox -s unit-3.9 cover
"unit-3.10":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: nox -s unit-3.10 cover
"unit-3.11":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: nox -s unit-3.11 cover
"unit-3.12":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: nox -s unit-3.12 cover
"unit-3.13":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: nox -s unit-3.13 cover
"lint":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: nox -s lint
workflows:
version: 2
build:
jobs:
- "unit-2.7"
- "unit-3.6"
- "unit-3.7"
- "unit-3.8"
- "unit-3.9"
- "unit-3.10"
- "unit-3.11"
- "unit-3.12"
- "unit-3.13"
- lint