File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 2828 run : |
2929 pip install .[dev,collision,vpython]
3030 pip install pytest-timeout
31- pytest --timeout=30 --timeout_method thread -s
31+ pytest --timeout=50 --timeout_method thread -s
3232 codecov :
3333 # If all tests pass:
3434 # Run coverage and upload to codecov
Original file line number Diff line number Diff line change @@ -95,12 +95,7 @@ def make_table(border):
9595 ', ' .join (robot .keywords )
9696 )
9797
98- print (str (table ))
99-
100- try :
101- make_table ('thin' )
102- except UnicodeEncodeError :
103- make_table ('ascii' )
98+ table .print ()
10499
105100
106101if __name__ == "__main__" : # pragma nocover
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def dynamics(self):
7777
7878 for j , link in enumerate (self ):
7979 table .row (link .name , * link ._dyn2list ())
80- print (table )
80+ table . print ()
8181
8282 def dynamics_list (self ):
8383 """
You can’t perform that action at this time.
0 commit comments