Changeset - 64ee7cf4a76d
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 13 years ago 2012-08-25 22:14:31
marcin@python-works.com
remove GIT before installing this ppa to fix upgrade issues
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
.travis.yml
Show inline comments
 
@@ -7,24 +7,25 @@ python:
 
env:  
 
  - TEST_DB=sqlite:////tmp/rhodecode_test.sqlite
 
  - TEST_DB=mysql://root@127.0.0.1/rhodecode_test
 
  - TEST_DB=postgresql://postgres@127.0.0.1/rhodecode_test
 

	
 
# command to install dependencies
 
before_script:
 
  - mysql -e 'create database rhodecode_test;'
 
  - psql -c 'create database rhodecode_test;' -U postgres
 
  - git --version
 

	
 
before_install:
 
  - sudo apt-get remove git
 
  - sudo add-apt-repository ppa:pdoes/ppa -y
 
  - sudo apt-get update -y
 
  - sudo apt-get install git -y
 

	
 
install:
 
  - pip install mysql-python psycopg2 mock unittest2
 
  - pip install . --use-mirrors
 

	
 
# command to run tests
 
script: nosetests
 

	
 
notifications:
0 comments (0 inline, 0 general)