Browse Source

Travis script no longer explicitly declares users when attempting to run run-tests.py

Steven Smith 9 years ago
parent
commit
3adf90a5fe
3 changed files with 1 additions and 4 deletions
  1. 0 2
      .travis.yml
  2. 0 1
      frameworks/C/lwan/setup.sh
  3. 1 1
      toolset/run-ci.py

+ 0 - 2
.travis.yml

@@ -188,8 +188,6 @@ install:
   # Configure Travis-CI build environment for TFB
   #   e.g. setup databases, users, etc
   - ./config/travis_setup.sh
-  #- ./toolset/run-ci.py cisetup "$TESTDIR"
-  - cat ./benchmark.cfg
 
 addons:
   postgresql: "9.3"

+ 0 - 1
frameworks/C/lwan/setup.sh

@@ -4,4 +4,3 @@ fw_depends lwan
 
 cd $LWAN_ROOT/techempower
 $LWAN_BUILD/techempower/techempower &
-

+ 1 - 1
toolset/run-ci.py

@@ -297,7 +297,7 @@ class CIRunnner:
 
     names = ' '.join(self.names)
     # Assume mode is verify
-    command = "toolset/run-tests.py --mode verify -u travis -r testrunner --database-user travis --test %s" % names
+    command = "toolset/run-tests.py --mode verify --test %s" % names
     
     # Run the command
     log.info("Running mode %s with commmand %s", self.mode, command)