Skip to content
Commits on Source (3)
......@@ -15,7 +15,7 @@ install:
- python setup.py -q install
script:
- python setup.py test
- flake8 --ignore E501,E123 biomaj_core/*.py
- flake8 --ignore E501,E123,W504 biomaj_core/*.py
deploy:
provider: pypi
skip_existing: true
......
3.0.15:
Fix check on bank properties config file when args is empty vs not defined
3.0.14:
Fix checks on local_endpoint_XXX in config.yml
In rabbitmq not defined on config.yml add an empty dict
......
......@@ -488,7 +488,7 @@ class BiomajConfig(object):
logging.error('Process exe for ' +
proc + ' not defined')
status = False
if not self.get(proc + '.args'):
if self.get(proc + '.args') is None:
logging.error('Process args for ' +
proc + ' not defined')
status = False
......
biomaj3-core (3.0.15-1) unstable; urgency=medium
* New upstream release (bug fixes)
-- Olivier Sallou <osallou@debian.org> Tue, 19 Feb 2019 15:28:26 +0000
biomaj3-core (3.0.14-2) unstable; urgency=medium
* Team upload.
......
......@@ -21,7 +21,7 @@ config = {
'url': 'http://biomaj.genouest.org',
'download_url': 'http://biomaj.genouest.org',
'author_email': 'olivier.sallou@irisa.fr',
'version': '3.0.14',
'version': '3.0.15',
'classifiers': [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
......