-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Emilio Reyes <[email protected]>
- Loading branch information
Showing
6 changed files
with
42 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
from pybuilder.core import Author | ||
|
||
# only for functional testing plugin | ||
# from pybuilder_radon import complexity | ||
# from pybuilder_radon import radon | ||
|
||
use_plugin("python.core") | ||
use_plugin("python.unittest") | ||
|
@@ -16,9 +16,9 @@ | |
|
||
name = 'pybuilder-radon' | ||
authors = [Author('Emilio Reyes', '[email protected]')] | ||
summary = 'Pybuilder plugin for radon' | ||
summary = 'Pybuilder plugin for radon cyclomatic complexity' | ||
url = 'https://github.com/soda480/pybuilder-radon' | ||
version = '0.1.1' | ||
version = '0.1.2' | ||
default_task = ['clean', 'analyze'] | ||
license = 'Apache License, Version 2.0' | ||
description = summary | ||
|
@@ -51,5 +51,5 @@ def set_properties(project): | |
'Programming Language :: Python :: 3.6', | ||
'Topic :: Software Development :: Build Tools']) | ||
# only for functional testing plugin | ||
# project.set_property('radon_break_build_average_complexity_threshold', 3.2) | ||
# project.set_property('radon_break_build_complexity_threshold', 6) | ||
# project.set_property('radon_break_build_average_complexity_threshold', 2.8) | ||
# project.set_property('radon_break_build_complexity_threshold', 5) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# -*- coding: utf-8 -*- | ||
from .task import complexity | ||
from .task import radon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters