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:
- pip install tox
- tox -e "${TOXENV}-${DATABASE}"
volumes:
- cache:/root/.cache
services:
postgresql:

View File

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

View File

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

View File

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

View File

@ -15,4 +15,4 @@ setenv =
sqlite: DB_NAME={env:SQLITE_NAME::memory:}
postgresql: DB_NAME={env:POSTGRESQL_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}