Remove volumes from drone and fix test

This commit is contained in:
C?dric Krier 2018-01-17 17:56:49 +01:00
parent a9f43afc8f
commit 7722aaf956
5 changed files with 10 additions and 9 deletions

View File

@ -13,8 +13,6 @@ pipeline:
commands: commands:
- pip install tox - pip install tox
- tox -e "${TOXENV}-${DATABASE}" - tox -e "${TOXENV}-${DATABASE}"
volumes:
- cache:/root/.cache
services: services:
postgresql: postgresql:

View File

@ -5,6 +5,7 @@ include CHANGELOG
include LICENSE include LICENSE
include tryton.cfg include tryton.cfg
include *.xml include *.xml
include *.csv
include view/*.xml include view/*.xml
include locale/*.po include locale/*.po
include doc/* include doc/*

View File

@ -73,7 +73,7 @@ setup(name='%s_%s' % (PREFIX, MODULE),
package_data={ package_data={
'trytond.modules.%s' % MODULE: (info.get('xml', []) 'trytond.modules.%s' % MODULE: (info.get('xml', [])
+ ['tryton.cfg', 'view/*.xml', 'locale/*.po', '*.odt', + ['tryton.cfg', 'view/*.xml', 'locale/*.po', '*.odt',
'icons/*.svg', 'tests/*.rst']), 'icons/*.svg', 'tests/*.rst', '*.csv']),
}, },
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',

View File

@ -1,7 +1,9 @@
#This file is part bank_es module for Tryton. # This file is part bank_es module for Tryton.
#The COPYRIGHT file at the top level of this repository contains # The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms. # the full copyright notices and license terms.
try:
from .test_country_zip_es import suite from trytond.modules.country_zip_es.tests.test_country_zip_es import suite
except ImportError:
from .test_country_zip_es import suite
__all__ = ['suite'] __all__ = ['suite']

View File

@ -15,4 +15,4 @@ setenv =
sqlite: DB_NAME={env:SQLITE_NAME::memory:} sqlite: DB_NAME={env:SQLITE_NAME::memory:}
postgresql: DB_NAME={env:POSTGRESQL_NAME:test} postgresql: DB_NAME={env:POSTGRESQL_NAME:test}
mysql: DB_NAME={env:MYSQL_NAME:test} mysql: DB_NAME={env:MYSQL_NAME:test}
install_command = pip install --pre --find-links https://trydevpi.tryton.org/ {opts} {packages} install_command = pip install --pre --process-dependency-links {opts} {packages}