summaryrefslogtreecommitdiff
path: root/src/sardana/test/testsuite.py
diff options
context:
space:
mode:
authorcpascual <cpascual@cells.es>2014-03-31 17:09:51 +0200
committercpascual <cpascual@cells.es>2014-03-31 17:09:51 +0200
commit9092650f8f6c3579aefe95173205b6af5c481fb3 (patch)
treee0f13271b9802bf414a141b258782d24ca702786 /src/sardana/test/testsuite.py
parentac1e1bfa755002c0ca8e9c19261f09fd99b77c4a (diff)
Apply autopep8 to sep5 files
This commit is the result of applying the following command to the sardana root dir: find ./ -name test -type d -exec autopep8 -ir --ignore E269 {} \;
Diffstat (limited to 'src/sardana/test/testsuite.py')
-rw-r--r--src/sardana/test/testsuite.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/sardana/test/testsuite.py b/src/sardana/test/testsuite.py
index e98dc385..a6371040 100644
--- a/src/sardana/test/testsuite.py
+++ b/src/sardana/test/testsuite.py
@@ -3,21 +3,21 @@
##############################################################################
##
## This file is part of Sardana
-##
+##
## http://www.tango-controls.org/static/sardana/latest/doc/html/index.html
##
## Copyright 2011 CELLS / ALBA Synchrotron, Bellaterra, Spain
-##
+##
## Sardana is free software: you can redistribute it and/or modify
## it under the terms of the GNU Lesser General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
-##
+##
## Sardana is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU Lesser General Public License for more details.
-##
+##
## You should have received a copy of the GNU Lesser General Public License
## along with Sardana. If not, see <http://www.gnu.org/licenses/>.
##
@@ -26,10 +26,10 @@
"""
This module defines the test suite for the whole Sardana package
Usage::
-
+
from taurus.test import testsuite
testsuite.run()
-
+
"""
__docformat__ = 'restructuredtext'
@@ -51,4 +51,3 @@ def run(disableLogger=True):
if __name__ == '__main__':
run()
-