File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
- version : 2
1
+ version : 2.1
2
2
jobs :
3
3
test :
4
4
working_directory : ~/atomate
5
5
docker :
6
6
- image : continuumio/miniconda3
7
7
- image : circleci/mongo
8
- - image : circleci/buildpack-deps
9
8
steps :
10
9
- checkout
11
10
- restore_cache :
@@ -14,15 +13,16 @@ jobs:
14
13
name : Install dependencies
15
14
command : |
16
15
export PATH=$HOME/miniconda3/bin:$PATH
17
- conda create --yes -- name test_env python=3.8
16
+ conda create --name test_env python=3.8
18
17
source activate test_env
19
- conda install --yes - c conda-forge openbabel
18
+ conda install -c conda-forge openbabel pymatgen
20
19
pip install -r requirements-ci.txt
21
20
pip install .
22
21
no_output_timeout : 1h
23
22
- run :
24
23
name : pytest
25
24
command : |
25
+ source activate test_env
26
26
pytest --ignore=atomate/qchem/test_files --cov=atomate --cov-report html:coverage_reports atomate
27
27
no_output_timeout : 1h
28
28
- store_artifacts :
32
32
path : coverage_reports/
33
33
34
34
workflows :
35
- version : 2
36
35
build_and_test :
37
36
jobs :
38
37
- test
You can’t perform that action at this time.
0 commit comments