We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d70a1f3 commit 3b4dbc2Copy full SHA for 3b4dbc2
.github/workflows/test.yml
@@ -10,6 +10,11 @@ jobs:
10
test:
11
if: github.repository_owner == 'hackingmaterials' # don't run on forks
12
runs-on: ubuntu-latest
13
+ services:
14
+ mongodb:
15
+ image: mongo
16
+ ports:
17
+ - 27017:27017
18
19
steps:
20
- name: Checkout repo
@@ -22,6 +27,7 @@ jobs:
22
27
23
28
- name: Install OpenBabel
24
29
run: |
30
+ # underlying C++ lib needed for Python openbabel wrapper installed by `pip install .`
25
31
sudo apt-get install libopenbabel-dev
26
32
# https://github.com/openbabel/openbabel/issues/2408#issuecomment-1014466193
33
sudo ln -s /usr/include/openbabel3 /usr/local/include/openbabel3
@@ -36,8 +42,6 @@ jobs:
36
42
37
43
- name: Install dependencies
38
44
39
- which pip
40
- pip --version
41
45
pip install -r requirements-ci.txt
46
pip install .[complete]
47
0 commit comments