We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad20f0b + 4cb2aa2 commit 1828d2cCopy full SHA for 1828d2c
3 files changed
.travis.yml
@@ -21,14 +21,11 @@ before_install:
21
# Update conda itself
22
- conda update --yes conda
23
- cd ..
24
- # this is the RMG-database project, so need to fetch RMG-Py
25
- - git clone https://github.com/ReactionMechanismGenerator/RMG-Py.git
26
- - cd RMG-Py
27
28
install:
29
- - conda env create
+ - conda create -c rmg --name rmg_env rmg=1.0.2 -y
30
- source activate rmg_env
31
- - make
+ - cd $TRAVIS_BUILD_DIR
32
33
script:
34
- make test-database
Makefile
@@ -0,0 +1,8 @@
1
+################################################################################
2
+#
3
+# Makefile for RMG-database
4
5
6
+
7
+test-database:
8
+ nosetests -v -d testing/databaseTest.py
0 commit comments