OSDN Git Service

travis conf
authorgitlabhq <m@gitlabhq.com>
Tue, 15 Nov 2011 13:51:43 +0000 (08:51 -0500)
committergitlabhq <m@gitlabhq.com>
Tue, 15 Nov 2011 13:51:43 +0000 (08:51 -0500)
.travis.yml
db/fixtures/test/001_repo.rb

index 474ca17..62a5dac 100644 (file)
@@ -3,6 +3,8 @@ branches:
     - 'master'
 rvm: 1.9.2
 before_script:
+  - "bundle exec rake db:create RAILS_ENV=test"
+  - "bundle exec rake db:migrate RAILS_ENV=test"
   - "bundle exec rake db:seed_fu RAILS_ENV=test"
   - "sh -e /etc/init.d/xvfb start"
 script: "bundle exec rake travis"
index 3eb4c29..fa50f84 100644 (file)
@@ -1,3 +1,7 @@
+# create tmp dir if not exist
+tmp_dir = File.join(Rails.root, "tmp")
+Dir.mkdir(tmp_dir) unless File.exists?(tmp_dir)
+
 # Create dir for test repo
 repo_dir = File.join(Rails.root, "tmp", "tests")
 Dir.mkdir(repo_dir) unless File.exists?(repo_dir)