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
b3b5a5db
Commit
b3b5a5db
authored
Oct 02, 2017
by
John Eskew
Committed by
GitHub
Oct 02, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #16140 from edx/jeskew/fix_xunit_pathing_for_common
Fix saving of common/lib xunit test results.
parents
085566b6
c17524d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pavelib/utils/test/suites/pytest_suite.py
+3
-3
No files found.
pavelib/utils/test/suites/pytest_suite.py
View file @
b3b5a5db
...
@@ -41,6 +41,7 @@ class PytestSuite(TestSuite):
...
@@ -41,6 +41,7 @@ class PytestSuite(TestSuite):
if
os
.
environ
.
get
(
"SHARD"
,
None
):
if
os
.
environ
.
get
(
"SHARD"
,
None
):
shard_str
=
"shard_{}"
.
format
(
os
.
environ
.
get
(
"SHARD"
))
shard_str
=
"shard_{}"
.
format
(
os
.
environ
.
get
(
"SHARD"
))
self
.
report_dir
=
self
.
report_dir
/
shard_str
self
.
report_dir
=
self
.
report_dir
/
shard_str
self
.
xunit_report
=
self
.
report_dir
/
"nosetests.xml"
self
.
cov_args
=
kwargs
.
get
(
'cov_args'
,
''
)
self
.
cov_args
=
kwargs
.
get
(
'cov_args'
,
''
)
...
@@ -135,7 +136,7 @@ class SystemTestSuite(PytestSuite):
...
@@ -135,7 +136,7 @@ class SystemTestSuite(PytestSuite):
cmd
=
[
'pytest'
]
cmd
=
[
'pytest'
]
cmd
.
extend
([
cmd
.
extend
([
'--ds={}'
.
format
(
'{}.envs.{}'
.
format
(
self
.
root
,
self
.
settings
)),
'--ds={}'
.
format
(
'{}.envs.{}'
.
format
(
self
.
root
,
self
.
settings
)),
'--junitxml={}'
.
format
(
self
.
report_dir
/
"nosetests.xml"
),
"--junitxml={}"
.
format
(
self
.
xunit_report
),
])
])
cmd
.
extend
(
self
.
test_options_flags
)
cmd
.
extend
(
self
.
test_options_flags
)
if
self
.
verbosity
<
1
:
if
self
.
verbosity
<
1
:
...
@@ -212,7 +213,6 @@ class LibTestSuite(PytestSuite):
...
@@ -212,7 +213,6 @@ class LibTestSuite(PytestSuite):
super
(
LibTestSuite
,
self
)
.
__init__
(
*
args
,
**
kwargs
)
super
(
LibTestSuite
,
self
)
.
__init__
(
*
args
,
**
kwargs
)
self
.
append_coverage
=
kwargs
.
get
(
'append_coverage'
,
False
)
self
.
append_coverage
=
kwargs
.
get
(
'append_coverage'
,
False
)
self
.
test_id
=
kwargs
.
get
(
'test_id'
,
self
.
root
)
self
.
test_id
=
kwargs
.
get
(
'test_id'
,
self
.
root
)
self
.
xunit_report
=
self
.
report_dir
/
"nosetests.xml"
@property
@property
def
cmd
(
self
):
def
cmd
(
self
):
...
@@ -223,7 +223,7 @@ class LibTestSuite(PytestSuite):
...
@@ -223,7 +223,7 @@ class LibTestSuite(PytestSuite):
cmd
.
extend
([
cmd
.
extend
([
"-p"
,
"-p"
,
"no:randomly"
,
"no:randomly"
,
"--junitxml="
.
format
(
self
.
xunit_report
),
"--junitxml=
{}
"
.
format
(
self
.
xunit_report
),
])
])
cmd
.
extend
(
self
.
passthrough_options
+
self
.
test_options_flags
)
cmd
.
extend
(
self
.
passthrough_options
+
self
.
test_options_flags
)
if
self
.
verbosity
<
1
:
if
self
.
verbosity
<
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