##// END OF EJS Templates
General renaming to Kallithea
General renaming to Kallithea

File last commit:

r4206:703d3208 kallithea-2.2.5-r...
r4212:24c0d584 kallithea-2.2.5-r...
Show More
.travis.yml
42 lines | 843 B | text/x-yaml | YamlLexer
tox+travis with multiple dbs
r2561 language: python
python:
- "2.5"
- "2.6"
- "2.7"
env:
Bradley M. Kuhn
Rename various strings for tests
r4206 - TEST_DB=sqlite:////tmp/kallithea_test.sqlite
- TEST_DB=mysql://root@127.0.0.1/kallithea_test
- TEST_DB=postgresql://postgres@127.0.0.1/kallithea_test
tox+travis with multiple dbs
r2561
travis configu updates
r2834 services:
- mysql
- postgresql
tox+travis with multiple dbs
r2561 # command to install dependencies
before_script:
Bradley M. Kuhn
Rename various strings for tests
r4206 - mysql -e 'create database kallithea_test;'
- psql -c 'create database kallithea_test;' -U postgres
Take that travis !
r2742 - git --version
before_install:
remove GIT before installing this ppa to fix upgrade issues
r2743 - sudo apt-get remove git
Take that travis !
r2742 - sudo add-apt-repository ppa:pdoes/ppa -y
- sudo apt-get update -y
- sudo apt-get install git -y
tox+travis with multiple dbs
r2561
install:
- pip install mysql-python psycopg2 mock unittest2
- pip install . --use-mirrors
Take that travis !
r2742
tox+travis with multiple dbs
r2561 # command to run tests
script: nosetests
notifications:
email:
- marcinkuz@gmail.com
Bradley M. Kuhn
Change IRC channel and Twitter account; remove google group
r4180 irc: "irc.freenode.org#kallithea"
tox+travis with multiple dbs
r2561
branches:
only:
Use master branch on master bookmark to test with travis
r3975 - master