File tree Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,17 @@ jobs:
21
21
- 27017:27017
22
22
23
23
steps :
24
- - name : Checkout repo
24
+ - name : Check out repo
25
25
uses : actions/checkout@v2
26
26
27
- - name : Setup Python
27
+ - name : Set up python
28
28
uses : actions/setup-python@v2
29
29
with :
30
30
python-version : 3.8
31
+ cache : pip
32
+ cache-dependency-path : |
33
+ setup.py
34
+ requirements-ci.txt
31
35
32
36
- name : Install OpenBabel
33
37
run : |
36
40
# https://github.com/openbabel/openbabel/issues/2408#issuecomment-1014466193
37
41
sudo ln -s /usr/include/openbabel3 /usr/local/include/openbabel3
38
42
39
- - name : Cache pip
40
- uses : actions/cache@v2
41
- with :
42
- path : ~/.cache/pip
43
- key : ${{ runner.os }}-pip-${{ hashFiles('requirements-ci.txt', 'setup.py') }}
44
- restore-keys : |
45
- ${{ runner.os }}-pip-
46
-
47
43
- name : Install dependencies
48
44
run : |
49
45
pip install -r requirements-ci.txt
77
73
runs-on : ubuntu-latest
78
74
needs : test
79
75
steps :
80
- - name : Checkout repo
76
+ - name : Check out repo
81
77
uses : actions/checkout@v2
82
78
83
79
- name : Get durations from cache
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ pip-log.txt
31
31
# Unit test / coverage reports
32
32
.coverage
33
33
.tox
34
- nosetests.xml
34
+ .test_durations
35
35
* .mypy_cache /*
36
36
37
37
# Translations
You can’t perform that action at this time.
0 commit comments