source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/gluon/packages/dal/tox.ini

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 1.0 KB
Line 
1[tox]
2envlist = {py27,pypy,pypy3,py33,py34,py35,py36}-{sqlite,mongo,mysql,oracle}, {py27,py33,py34}-{postgres,postgres3}, py27-{google,mssql}
3
4[testenv]
5passenv = ORACLE_HOME ORACLE_BASE LD_LIBRARY_PATH NLS_LANG ORACLE_SID
6setenv =
7    sqlite: DB=sqlite:///tmp/storage.sqlite
8    mysql: DB=mysql://root:@localhost/pydal
9    postgres: DB=postgres://postgres:@localhost/pydal
10    postgres3: DB=postgres3:psycopg2://postgres:@localhost/pydal
11    google: DB=google:datastore
12    mongo: DB=mongodb://localhost/pydal
13    mssql: DB=mssql4://sa:Password12!@(local)\SQL2014/pydal
14    mssqln: DB=mssql4n://sa:Password12!@(local)\SQL2014/pydal
15    oracle: DB=oracle://TEST/TEST@XE
16deps =
17    mysql: pymysql
18    postgres: psycopg2
19    postgres3: psycopg2
20    google: pyyaml
21    mongo: pymongo
22    mssql: pypyodbc
23    mssqln: pypyodbc
24    coverage: coverage
25    oracle: cx_Oracle
26commands =
27    py27,pypy,pypy3,py33,py34,py35,py36: {envpython} -m unittest -v -f tests
28    coverage: coverage erase
29    coverage: coverage run -m unittest -v -f tests
30    coverage: coverage combine
Note: See TracBrowser for help on using the repository browser.