|
@@ -152,19 +152,23 @@ env:
|
|
|
- "TESTDIR=Ur/urweb"
|
|
|
|
|
|
before_install:
|
|
|
+ # Need to install python modules before using
|
|
|
+ # python
|
|
|
+ - pip install -r config/python_requirements.txt
|
|
|
+
|
|
|
# Configure Travis-CI build environment for TFB
|
|
|
# e.g. setup databases, users, etc
|
|
|
- - time ./toolset/run-ci.py cisetup "$TESTDIR"
|
|
|
+ - ./toolset/run-ci.py cisetup "$TESTDIR"
|
|
|
|
|
|
addons:
|
|
|
postgresql: "9.3"
|
|
|
|
|
|
install:
|
|
|
# Install prerequisites
|
|
|
- - time ./toolset/run-ci.py prereq "$TESTDIR"
|
|
|
+ - ./toolset/run-ci.py prereq "$TESTDIR"
|
|
|
|
|
|
# Install software for this framework
|
|
|
- - time ./toolset/run-ci.py install "$TESTDIR"
|
|
|
+ - ./toolset/run-ci.py install "$TESTDIR"
|
|
|
|
|
|
script:
|
|
|
# Pick one test in this directory and verify
|