Skip to main content

Acsone Odoo Dev Tools

Project description

License: GPL-3 https://badge.fury.io/py/acsoo.svg https://travis-ci.org/acsone/acsoo.svg?branch=master https://codecov.io/gh/acsone/acsoo/branch/master/graph/badge.svg

This is a set of command-line utilities to facilitate the Odoo development workflow at Acsone.

It assumes the project is a setuptools-based python package that can be packaged and installed with pip.

Criteria for tools to be included here:

  • being small wrappers around standard commands (git, pip, etc)

  • yet being sufficiently non-trivial to be error-prone or time consuming when done manually

  • being used across several Acsone Odoo projects

Installation

pip install acsoo

To enable bash completion, add this line in your .bashrc:

eval "$(_ACSOO_COMPLETE=source acsoo)"

What we have here

Below are is the list of available commands wth a few examples.

Use acsoo --help or acsoo <command> --help for more information.

Initialize a new project

mrbob acsoo:templates/project
cd {project name}
mkvirtualenv {project name} -a .

acsoo tag

Tag the current project after ensuring everything has been commited to git.

acsoo tag_editable_requirements

Tag all editable requirements found in requirements.txt, so the referenced commits are not lost in case of git garbage collection.

acsoo wheel

Build wheels for all dependencies found in requirements.txt, plus the project in the current directory.

This is actually almost trivial (ie pip wheel -r requirements.txt -e .), but works around a pip quirk.

acsoo release

Perform acsoo tag, acsoo tag_editable_requirements and acsoo wheel in one command.

acsoo flake8

Run flake8 with sensible default for Odoo code.

It is possible to pass additional options to the flake8 command, eg:

acsoo flake8 -- --ignore E24,W504

acsoo pylint

Run pylint on the odoo or odoo_addons namespace. It automatically uses the pylint-odoo plugin and runs with a reasonable configuration, including an opinionated set of disabled message.

It is possible to pass additional options to the pylint command, eg:

acsoo pylint -- --disable missing-final-newline odoo

This command returns an non-zero exit code if any message is reported. It is however possibly to display messages while reporting success, eg:

acsoo pylint --expected api-one-deprecated:2,line-too-long -- odoo

The above command succeeds despite having exactly 2 api-one-deprecated or any number of line-too-long messages being reported.

It is also possible to force failure on messages that are expected in the default configuration, eg to fail on fixme errors, just expect 0 fixme messages, like this:

acsoo pylint --expected fixme:0 -- odoo

acsoo addons

A set of commands to print addons lists, useful when running tests.

acsoo addons list
acsoo addons list-depends

acsoo checklog

Check if an odoo log file conatains error, with the possibility to ignore some errors based on regular expressions.

acsoo checklog odoo.log
odoo -d mydb -i base --stop-after-init | acsoo checklog
acsoo checklog --ignore "WARNING.*blah" odoo.log

Ideas

acsoo freeze

pip freeze (which works very well as is) with the following additions

  • exluding some common dev tools that are not required in production (pudb, ipdb, acsoo, git-aggregator, setuptools-odoo…) and their dependencies unless such dependencies are required by the project (directly or indirectly).

  • excluding the project itself (as usual for python requirements.txt files)

Inspiration to be found in https://pypi.python.org/pypi/pipdeptree, although I don’t think acsoo should depend on that, as it’s only a thin wrapper around the pip api.

acsoo version

A helper to bump version in acsoo.cfg and also bump version in (some?) odoo addons, such as the main addon that pulls dependencies. Requires further thinking.

Maintainer

ACSONE SA/NV

This project is maintained by ACSONE SA/NV.

Changes

1.1.0 (2017-05-25)

  • [IMP] pylint: BREAKING the package to test must be provided explicitly, as soon as additional pylint options are provided, so as to enable easy local testing of a subset of a project. Examples: acsoo pylint -- -d some-message odoo, acsoo pylint -- odoo.addons.xyz

  • [IMP] pylint: disable more code complexity errors: too-many-nested-blocks, too-many-return-statements

  • [IMP] pylint: display messages causing failure last, so emails from CI that show the last lines of the log are more relevant

  • [IMP] pylint: display summary of messages that did not cause failure, also when there is no failure

  • [ADD] acsoo addons list and acsoo addons list-depends

  • [ADD] acsoo checklog

1.0.1 (2017-05-21)

  • First public release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

acsoo-1.1.0.tar.gz (46.7 kB view details)

Uploaded Source

Built Distribution

acsoo-1.1.0-py2-none-any.whl (48.1 kB view details)

Uploaded Python 2

File details

Details for the file acsoo-1.1.0.tar.gz.

File metadata

  • Download URL: acsoo-1.1.0.tar.gz
  • Upload date:
  • Size: 46.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for acsoo-1.1.0.tar.gz
Algorithm Hash digest
SHA256 376acb4331b5a406fa0e7ca70ec6a38cab20bad1d0b4b6546327527583cce13e
MD5 96952df748d326973d1948ad50524e04
BLAKE2b-256 4f0d95334f5439bb5f91173b9fd9fd7d4e7a318eb4558744fc0b45b261312dd5

See more details on using hashes here.

File details

Details for the file acsoo-1.1.0-py2-none-any.whl.

File metadata

File hashes

Hashes for acsoo-1.1.0-py2-none-any.whl
Algorithm Hash digest
SHA256 78184ce33bf2dadfec8a8220ef86b94f8d5b3531370a1a48307ab2688c01a720
MD5 39fa80e30ea4228f847dc0fb78448ede
BLAKE2b-256 ce99923744f33a8df47d220751f7b93f01ee23548ee2d02a2750da1efb3f7787

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page