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
2e8c68e6
Commit
2e8c68e6
authored
May 03, 2017
by
Andy Armstrong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make tests and coverage work with openedx/features
parent
963519b8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
5 deletions
+7
-5
.coveragerc
+1
-1
common/test/acceptance/.a11ycoveragerc
+1
-1
common/test/acceptance/.coveragerc
+1
-1
common/test/acceptance/.pa11ycrawlercoveragerc
+1
-1
docs/en_us/platform_api/source/conf.py
+1
-0
pavelib/utils/test/suites/nose_suite.py
+2
-1
No files found.
.coveragerc
View file @
2e8c68e6
...
...
@@ -8,7 +8,7 @@ source =
common/lib/capa
common/lib/xmodule
lms
openedx
/core/djangoapps
openedx
pavelib
omit =
...
...
common/test/acceptance/.a11ycoveragerc
View file @
2e8c68e6
...
...
@@ -5,7 +5,7 @@ source =
cms
common/djangoapps
common/lib
openedx
/core/djangoapps
openedx
omit =
lms/envs/*
...
...
common/test/acceptance/.coveragerc
View file @
2e8c68e6
...
...
@@ -5,7 +5,7 @@ source =
cms
common/djangoapps
common/lib
openedx
/core/djangoapps
openedx
omit =
lms/envs/*
...
...
common/test/acceptance/.pa11ycrawlercoveragerc
View file @
2e8c68e6
...
...
@@ -6,7 +6,7 @@ source =
cms
common/djangoapps
common/lib
openedx
/core/djangoapps
openedx
**/mako_lms/
**/mako_cms/
...
...
docs/en_us/platform_api/source/conf.py
View file @
2e8c68e6
...
...
@@ -214,6 +214,7 @@ sys.path.append(root / "common/djangoapps")
sys
.
path
.
append
(
root
/
"lms/djangoapps"
)
sys
.
path
.
append
(
root
/
"lms/envs"
)
sys
.
path
.
append
(
root
/
"openedx/core/djangoapps"
)
sys
.
path
.
append
(
root
/
"openedx/features"
)
sys
.
path
.
insert
(
0
,
...
...
pavelib/utils/test/suites/nose_suite.py
View file @
2e8c68e6
...
...
@@ -190,7 +190,8 @@ class SystemTestSuite(NoseTestSuite):
if
self
.
root
==
'lms'
:
default_test_id
+=
" {system}/tests.py"
default_test_id
+=
" openedx/core/djangolib"
default_test_id
+=
" openedx/core/djangolib/*"
default_test_id
+=
" openedx/features/*"
return
default_test_id
.
format
(
system
=
self
.
root
)
...
...
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