-
Notifications
You must be signed in to change notification settings - Fork 69
140 lines (120 loc) · 5.4 KB
/
testing.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
name: testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: ${{ matrix.package }} (${{ matrix.os }}/py${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"] # TODO openbabel for windows and mac
package: ["emmet-core", "emmet-builders", "emmet-api"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: anaconda, conda-forge
- name: Install OpenBabel
shell: bash -l {0}
run: |
conda install openbabel -y
# - uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# cache: 'pip'
# - name: Install OpenBabel on Ubuntu
# if: matrix.os == 'ubuntu-latest'
# env:
# cc_compiler: "gcc"
# cxx_compiler: "g++"
# cmake_flags: "-DPYTHON_BINDINGS=ON -DRUN_SWIG=ON"
# shell: bash -l {0}
# run: |
# sudo apt-get update && sudo apt-get -qq install ninja-build swig libeigen3-dev libboost-all-dev libopenbabel-dev
# git clone https://github.com/openbabel/openbabel.git ${{ runner.workspace }}/openbabel
# mkdir "${{ runner.workspace }}/openbabel/build"
# cd "${{ runner.workspace }}/openbabel/build"
# cmake -DCMAKE_C_COMPILER=$cc_compiler -DCMAKE_CXX_COMPILER=$cxx_compiler $cmake_flags ..
# sudo make
# sudo make install
# echo "PYTHONPATH=/usr/local/lib:/usr/local/include/openbabel3:$PYTHONPATH" >> $GITHUB_PATH
# sudo ln -s /usr/include/openbabel3 /usr/local/include/openbabel3
# echo "LD_LIBRARY_PATH=/usr/local/lib:/usr/include/openbabel3:$LD_LIBRARY_PATH" >> $GITHUB_PATH
# - name: Install OpenBabel on MacOS
# if: matrix.os == 'macos-latest'
# env:
# cc_compiler: "clang"
# cxx_compiler: "clang++"
# shell: bash -l {0}
# run: |
# brew install ninja swig eigen boost
# echo "/Users/runner/Library/Python/${{ matrix.python-version }}/bin" >> $GITHUB_PATH
# git clone https://github.com/openbabel/openbabel.git ${{ runner.workspace }}/openbabel
# mkdir "${{ runner.workspace }}/openbabel/build"
# cd "${{ runner.workspace }}/openbabel/build"
# cmake -DCMAKE_C_COMPILER=$cc_compiler -DCMAKE_CXX_COMPILER=$cxx_compiler $cmake_flags ..
# sudo make
# sudo make install
# echo "PYTHONPATH=/usr/local/lib:/usr/local/include/openbabel3:$PYTHONPATH" >> $GITHUB_PATH
# sudo ln -s /usr/include/openbabel3 /usr/local/include/openbabel3
# echo "LD_LIBRARY_PATH=/usr/local/lib:/usr/include/openbabel3:$LD_LIBRARY_PATH" >> $GITHUB_PATH
- name: Install Python dependencies
shell: bash -l {0}
run: |
python${{ matrix.python-version }} -m pip install --upgrade pip pip-tools
python${{ matrix.python-version }} -m pip install --user `grep numpy ${{ matrix.package }}/requirements/${{ matrix.os }}_py${{ matrix.python-version }}_extras.txt`
python${{ matrix.python-version }} -m piptools sync --user ${{ matrix.package }}/requirements/${{ matrix.os }}_py${{ matrix.python-version }}_extras.txt
- name: Install editable emmet-core if needed
shell: bash -l {0}
if: matrix.package != 'emmet-core'
run: python${{ matrix.python-version }} -m pip install --user --no-deps ./emmet-core
- name: Install ${{ matrix.package }}
shell: bash -l {0}
run: python${{ matrix.python-version }} -m pip install --user --no-deps -e ./${{ matrix.package }}
- name: Lint with mypy
shell: bash -l {0}
run: python${{ matrix.python-version }} -m mypy --namespace-package ${{ matrix.package }}/emmet
- name: Test with pytest
if: always() # run tests even if linting failed
shell: bash -l {0}
run: python${{ matrix.python-version }} -m pytest --cov=emmet --cov-report=xml ${{ matrix.package }}/tests
- uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
# docs:
# needs: test
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.8"]
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# cache: 'pip'
# - name: Install OpenBabel
# run: |
# sudo apt-get update && sudo apt-get install openbabel libopenbabel-dev
# sudo ln -s /usr/include/openbabel3 /usr/local/include/openbabel3
# - name: Install dependencies
# run: |
# python${{ matrix.python-version }} -m pip install --upgrade pip pip-tools
# python${{ matrix.python-version }} -m piptools sync --user emmet-*/requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
# python${{ matrix.python-version }} -m pip install --user --no-deps -e ./emmet-core ./emmet-api ./emmet-builders
# - name: Build
# run: mkdocs build