Skip to main content

Code quality tests

Project description

It is sometimes possible to tell that code stinks even without looking at it. This Django app tries to accomplish that.

Pipeline status Documentation status

Installation

pip install django-smelly-tokens

Usage

In your settings.py define SMELLY_TOKENS_APPLICATIONS list with packages you want to inspect.

In a package with code quality tests (e.g. test_tokens.py) import tests you want to check your apps against:

from smelly_tokens.test_smelly_tokens import (
    EvalTokenTestCase,
    PdbTokenTestCase,
)

Run django-admin.py test or ./manage.py test or py.test or nose or whatever runner you’re using.

Exceptions

To silence known errors PEP8-style noqa comment can be used in the beginning of a file:

# smelly_tokens: noqa

Or in-line:

eval('print 123')  # noqa

To exclude an entire directory add it’s path to SMELLY_TOKENS_EXCLUDE_DIRS list in settings.

Adding your own tokens

To create a new type of smelly token test case, inherit SmellyTokensTestCase and override _tokens list:

from django.test import TestCase
from smelly_tokens.test_smelly_tokens import SmellyTokensTestCase


class OOPTokensTestCase(SmellyTokensTestCase, TestCase):
""" OOP hater. """
_tokens = ['class', 'object', 'Object']

References

Changelog

0.5.0 (2022-06-06)

  • Use pathlib for path manipulation.

0.4.6 (2020-09-21)

  • Better directory exclusion.

0.4.5 (2020-09-21)

  • New pkgutil.get_loader fix.

0.4.4 (2018-06-06)

  • #movingtogitlab

0.4 (2017-05-06)

  • Introduced zest.releaser.

  • Released to PyPI.

  • Documentation.

0.3 (2017-05-02)

  • Python 2 / 3 compatibility.

  • Multiple tokens per class.

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

django-smelly-tokens-0.5.0.tar.gz (7.0 kB view hashes)

Uploaded Source

Built Distribution

django_smelly_tokens-0.5.0-py2.py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 2 Python 3

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