@@ -23,17 +23,17 @@ jobs:
23
23
steps :
24
24
- checkout
25
25
- restore_cache :
26
- key : deps-{{ .Branch }}-2.7-mpich-{{ checksum "ci/environment-dev -2.7-mpich.yml" }}
26
+ key : deps-{{ .Branch }}-2.7-mpich-{{ checksum ".circleci/env -2.7-mpich.yml" }}
27
27
- run :
28
28
name : Install and activate conda environment
29
- command : ./ci/ install-circle .sh
29
+ command : .circleci/ install.sh
30
30
- run :
31
31
name : Running tests
32
32
command : |
33
33
source activate ${ENV_NAME}
34
34
pytest --junitxml=test-reports/junit.xml --cov=./ dask_mpi/tests/ --verbose
35
35
- save_cache :
36
- key : deps-{{ .Branch }}-2.7-mpich-{{ checksum "ci/environment-dev -2.7-mpich.yml" }}
36
+ key : deps-{{ .Branch }}-2.7-mpich-{{ checksum ".circleci/env -2.7-mpich.yml" }}
37
37
paths :
38
38
- " /opt/conda/envs/${ENV_NAME}/"
39
39
- " /opt/conda/pkgs"
@@ -53,17 +53,17 @@ jobs:
53
53
steps :
54
54
- checkout
55
55
- restore_cache :
56
- key : deps-{{ .Branch }}-2.7-openmpi-{{ checksum "ci/environment-dev -2.7-openmpi.yml" }}
56
+ key : deps-{{ .Branch }}-2.7-openmpi-{{ checksum ".circleci/env -2.7-openmpi.yml" }}
57
57
- run :
58
58
name : Install and activate conda environment
59
- command : ./ci/ install-circle .sh
59
+ command : .circleci/ install.sh
60
60
- run :
61
61
name : Running tests
62
62
command : |
63
63
source activate ${ENV_NAME}
64
64
pytest --junitxml=test-reports/junit.xml --cov=./ dask_mpi/tests/ --verbose
65
65
- save_cache :
66
- key : deps-{{ .Branch }}-2.7-openmpi-{{ checksum "ci/environment-dev -2.7-openmpi.yml" }}
66
+ key : deps-{{ .Branch }}-2.7-openmpi-{{ checksum ".circleci/env -2.7-openmpi.yml" }}
67
67
paths :
68
68
- " /opt/conda/envs/${ENV_NAME}/"
69
69
- " /opt/conda/pkgs"
@@ -80,17 +80,17 @@ jobs:
80
80
steps :
81
81
- checkout
82
82
- restore_cache :
83
- key : deps-{{ .Branch }}-3.6-mpich-{{ checksum "ci/environment-dev -3.6-mpich.yml" }}
83
+ key : deps-{{ .Branch }}-3.6-mpich-{{ checksum ".circleci/env -3.6-mpich.yml" }}
84
84
- run :
85
85
name : Install and activate conda environment
86
- command : ./ci/ install-circle .sh
86
+ command : .circleci/ install.sh
87
87
- run :
88
88
name : Running tests
89
89
command : |
90
90
source activate ${ENV_NAME}
91
91
pytest --junitxml=test-reports/junit.xml --cov=./ dask_mpi/tests/ --verbose
92
92
- save_cache :
93
- key : deps-{{ .Branch }}-3.6-mpich-{{ checksum "ci/environment-dev -3.6-mpich.yml" }}
93
+ key : deps-{{ .Branch }}-3.6-mpich-{{ checksum ".circleci/env -3.6-mpich.yml" }}
94
94
paths :
95
95
- " /opt/conda/envs/${ENV_NAME}/"
96
96
- " /opt/conda/pkgs"
@@ -116,17 +116,17 @@ jobs:
116
116
steps :
117
117
- checkout
118
118
- restore_cache :
119
- key : deps-{{ .Branch }}-3.6-openmpi-{{ checksum "ci/environment-dev -3.6-openmpi.yml" }}
119
+ key : deps-{{ .Branch }}-3.6-openmpi-{{ checksum ".circleci/env -3.6-openmpi.yml" }}
120
120
- run :
121
121
name : Install and activate conda environment
122
- command : ./ci/ install-circle .sh
122
+ command : .circleci/ install.sh
123
123
- run :
124
124
name : Running tests
125
125
command : |
126
126
source activate ${ENV_NAME}
127
127
pytest --junitxml=test-reports/junit.xml --cov=./ dask_mpi/tests/ --verbose
128
128
- save_cache :
129
- key : deps-{{ .Branch }}-3.6-openmpi-{{ checksum "ci/environment-dev -3.6-openmpi.yml" }}
129
+ key : deps-{{ .Branch }}-3.6-openmpi-{{ checksum ".circleci/env -3.6-openmpi.yml" }}
130
130
paths :
131
131
- " /opt/conda/envs/${ENV_NAME}/"
132
132
- " /opt/conda/pkgs"
0 commit comments