File tree Expand file tree Collapse file tree 4 files changed +5
-97
lines changed
test_files/atomate/.circleci Expand file tree Collapse file tree 4 files changed +5
-97
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
test :
11
+ # don't run on forks
12
+ if : github.repository_owner == 'hackingmaterials'
11
13
runs-on : ubuntu-latest
12
14
13
15
steps :
@@ -19,23 +21,20 @@ jobs:
19
21
with :
20
22
python-version : 3.7
21
23
22
- - name : Install C++ dependencies
24
+ - name : Install OpenBabel
23
25
run : |
24
- sudo apt-get install openbabel
26
+ sudo apt-get install openbabel python3-openbabel
25
27
26
28
- name : Cache pip
27
29
uses : actions/cache@v2
28
- id : pip-cache
29
30
with :
30
31
path : ~/.cache/pip
31
- key : ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
32
+ key : ${{ runner.os }}-pip-${{ hashFiles('requirements-ci .txt') }}
32
33
restore-keys : |
33
34
${{ runner.os }}-pip-
34
35
35
36
- name : Install dependencies
36
- if : steps.pip-cache.outputs.cache-hit != 'true'
37
37
run : |
38
- pip install -r requirements.txt
39
38
pip install -r requirements-ci.txt
40
39
pip install .[complete]
41
40
Original file line number Diff line number Diff line change 5
5
from datetime import datetime
6
6
7
7
import numpy as np
8
- import scipy
9
8
from fireworks import FiretaskBase , FWAction , explicit_serialize
10
9
from fireworks .utilities .fw_serializers import DATETIME_HANDLER
11
10
from monty .json import MontyEncoder , jsanitize
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments