Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
e159ff9b
Commit
e159ff9b
authored
Jun 06, 2014
by
David Baumgold
Committed by
Christine Lytwynec
Jun 06, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused `verbose` property
parent
4221bf9e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
10 deletions
+1
-10
pavelib/utils/test/suites/i18n_suite.py
+1
-1
pavelib/utils/test/suites/suite.py
+0
-9
No files found.
pavelib/utils/test/suites/i18n_suite.py
View file @
e159ff9b
...
...
@@ -31,7 +31,7 @@ class I18nTestSuite(TestSuite):
cmd
=
(
"{pythonpath_prefix} nosetests {repo_root}/i18n/tests "
"--with-xunit --xunit-file={xunit_report} "
"--verbosity={verbosity}.format(
"--verbosity={verbosity}
"
.
format
(
pythonpath_prefix
=
pythonpath_prefix
,
repo_root
=
Env
.
REPO_ROOT
,
xunit_report
=
self
.
xunit_report
,
...
...
pavelib/utils/test/suites/suite.py
View file @
e159ff9b
...
...
@@ -23,15 +23,6 @@ class TestSuite(object):
self
.
failed_suites
=
[]
self
.
verbosity
=
kwargs
.
get
(
'verbosity'
,
1
)
@property
def
verbose
(
self
):
"""
Boolean version of `self.verbosity`. If `self.verbosity` is greater than
1, `self.verbose` is True. Note that the default value for
`self.verbosity` is 1, so the default value for `self.verbose` is False.
"""
return
self
.
verbosity
>
1
def
__enter__
(
self
):
"""
This will run before the test suite is run with the run_suite_tests method.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment