Skip to content

Commit abf0c74

Browse files
wkingrwest
authored andcommitted
.travis.yml: Configure Travis CI for automated testing
The installation instructions are based on the Ubuntu 12.04 instructions [1]. Conveniently for us, Travis uses Ubuntu 12.04 as its Linux environment as well [2]. I made a few changes to the suggested installation procedure: * build-essential [3] instead of g++ (so we get Make too) * Non-Python [4] RDKit from packages [5,6,7,8,9] instead of from source, although this installs RDKit v201106, which may be too old? I haven't checked any of the InChl stuff [10] for building from source, so this might be completely broken at the moment. Unfortunately, the version of RDKit on PyPI is 2009.Q1b1, which is too old for the libraries we've installed from packages [11]. * Travis doesn't support Python 2.5 [12], so I only test on 2.6 and 2.7. I also don't understand how RMG-Py finds RMG-database, so that might be broken as well. [1]: http://greengroup.github.io/RMG-Py/users/rmg/installation/linux.html [2]: http://docs.travis-ci.com/user/installing-dependencies/#Installing-Ubuntu-packages [3]: http://packages.ubuntu.com/precise/build-essential [4]: http://docs.travis-ci.com/user/languages/python/#Travis-CI-Uses-Isolated-virtualenvs [5]: http://www.rdkit.org/docs/Install.html#ubuntu-12-04-and-later [6]: http://packages.ubuntu.com/precise/python-rdkit [7]: http://packages.ubuntu.com/precise/librdkit-dev [8]: http://packages.ubuntu.com/precise/librdkit1 [9]: http://packages.ubuntu.com/precise/rdkit-data [10]: http://code.google.com/p/rdkit/wiki/BuildingWithCmake#Getting_Ready [11]: https://pypi.python.org/pypi/rdkit [12]: http://docs.travis-ci.com/user/languages/python/#Choosing-Python-versions-to-test-against
1 parent 2eabd95 commit abf0c74

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
before_install:
6+
- sudo apt-get update -qq
7+
- sudo apt-get install git build-essential gfortran python-dev liblapack-dev python-openbabel python-setuptools python-pip
8+
- sudo apt-get install python-rdkit librdkit-dev librdkit1 rdkit-data
9+
- git clone git@github.com:GreenGroup/RMG-database.git
10+
install:
11+
- pip install numpy --use-mirrors
12+
- pip install -r requirements.txt --use-mirrors
13+
- make
14+
- pip install .
15+
script: make test

0 commit comments

Comments
 (0)