Browse Source

More Travis testing

Steven Smith 9 years ago
parent
commit
eebbccdf96
2 changed files with 1 additions and 3 deletions
  1. 0 1
      config/travis_setup.sh
  2. 1 2
      toolset/benchmark/test_types/framework_test_type.py

+ 0 - 1
config/travis_setup.sh

@@ -70,7 +70,6 @@ echo "Populating MySQL database"
 sudo mysqladmin -u root password secret
 sudo restart mysql
 mysql -uroot -psecret < config/create.sql
-echo "select * from fortune" | mysql -ubenchmarkdbuser -pbenchmarkdbpass -h127.0.0.1 hello_world
 
 # Setup Postgres
 echo "Removing Postgres 9.1 from Travis-CI"

+ 1 - 2
toolset/benchmark/test_types/framework_test_type.py

@@ -90,8 +90,7 @@ class FrameworkTestType:
         body = r.content
         self.out.write(str(headers))
         self.out.write(body)
-        b = 40
-        print "  Response (trimmed to %d bytes): \"%s\"" % (b, body.strip()[:b])
+        print "  Response: \"%s\"" % body
         return headers, body
 
     def verify(self, base_url):