-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathconfig.yml
68 lines (62 loc) · 1.26 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
version: 2
jobs:
# Pip
"pip-2.7":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: ci/config_auth.sh
- run: nox -s unit-2.7 system-2.7
"pip-3.5":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: ci/config_auth.sh
- run: nox -s unit-3.5 system-3.5
"pip-3.6":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: ci/config_auth.sh
- run: nox -s unit-3.6 system-3.6
"pip-3.7":
docker:
- image: thekevjames/nox
steps:
- checkout
- run: ci/config_auth.sh
- run: nox -s unit-3.7 system-3.7 cover
"lint":
docker:
- image: thekevjames/nox
environment:
# Resolve "Python 3 was configured to use ASCII as encoding for the environment"
LC_ALL: C.UTF-8
LANG: C.UTF-8
steps:
- checkout
- run: nox -s lint
# Conda
"conda-3.6-0.20.1":
docker:
- image: continuumio/miniconda3
environment:
PYTHON: "3.6"
PANDAS: "0.20.1"
steps:
- checkout
- run: ci/config_auth.sh
- run: ci/run_conda.sh
workflows:
version: 2
build:
jobs:
- "pip-2.7"
- "pip-3.5"
- "pip-3.6"
- "pip-3.7"
- lint
- "conda-3.6-0.20.1"