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
e93e6320
Commit
e93e6320
authored
Dec 04, 2013
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1825 from edx/ned/make-runone-work-with-more-test-output
Make runone work with more test output.
parents
1a585a88
149c3fd0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
scripts/runone.py
+6
-2
No files found.
scripts/runone.py
View file @
e93e6320
...
...
@@ -32,8 +32,12 @@ def main(argv):
if
words
[
0
]
.
endswith
(
':'
):
del
words
[
0
]
test_method
=
words
[
0
]
test_path
=
words
[
1
]
.
split
(
'.'
)
if
len
(
words
)
==
1
:
test_path
,
test_method
=
words
[
0
]
.
rsplit
(
'.'
,
1
)
test_path
=
test_path
.
split
(
'.'
)
else
:
test_method
=
words
[
0
]
test_path
=
words
[
1
]
.
split
(
'.'
)
if
test_path
[
0
]
==
'mitx'
:
del
test_path
[
0
]
test_class
=
test_path
[
-
1
]
...
...
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