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
0abd2fce
Commit
0abd2fce
authored
Sep 21, 2016
by
Mushtaq Ali
Committed by
muzaffaryousaf
Oct 04, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increase connect & read timeout to fix flaky test test_easy_access_from_notes_page.
TNL-4590
parent
96fb00cf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
12 deletions
+11
-12
common/test/acceptance/tests/lms/test_lms_edxnotes.py
+6
-12
lms/envs/bok_choy.py
+5
-0
No files found.
common/test/acceptance/tests/lms/test_lms_edxnotes.py
View file @
0abd2fce
...
...
@@ -842,7 +842,6 @@ class EdxNotesPageTest(EventsTestMixin, EdxNotesTestMixin):
self
.
assert_viewed_event
(
'Tags'
)
@flaky
# TNL-4590
def
test_easy_access_from_notes_page
(
self
):
"""
Scenario: Ensure that the link to the Unit works correctly.
...
...
@@ -874,27 +873,22 @@ class EdxNotesPageTest(EventsTestMixin, EdxNotesTestMixin):
self
.
_add_default_notes
()
self
.
notes_page
.
visit
()
# visiting the page results in an ajax request to fetch the notes
self
.
notes_page
.
wait_for_ajax
()
note
=
self
.
notes_page
.
notes
[
0
]
assert_page
(
note
,
self
.
raw_note_list
[
4
][
'usage_id'
],
"Recent Activity"
)
self
.
notes_page
.
visit
()
.
switch_to_tab
(
"structure"
)
# visiting the page results in an ajax request to fetch the notes
self
.
notes_page
.
wait_for_ajax
()
self
.
notes_page
.
visit
()
self
.
notes_page
.
switch_to_tab
(
"structure"
)
note
=
self
.
notes_page
.
notes
[
1
]
assert_page
(
note
,
self
.
raw_note_list
[
2
][
'usage_id'
],
"Location in Course"
)
self
.
notes_page
.
visit
()
.
switch_to_tab
(
"tags"
)
# visiting the page results in an ajax request to fetch the notes
self
.
notes_page
.
wait_for_ajax
()
self
.
notes_page
.
visit
()
self
.
notes_page
.
switch_to_tab
(
"tags"
)
note
=
self
.
notes_page
.
notes
[
0
]
assert_page
(
note
,
self
.
raw_note_list
[
2
][
'usage_id'
],
"Tags"
)
self
.
notes_page
.
visit
()
.
search
(
"Fifth"
)
# visiting the page results in an ajax request to fetch the notes
self
.
notes_page
.
visit
()
self
.
notes_page
.
search
(
"Fifth"
)
self
.
notes_page
.
wait_for_ajax
()
note
=
self
.
notes_page
.
notes
[
0
]
assert_page
(
note
,
self
.
raw_note_list
[
4
][
'usage_id'
],
"Search Results"
)
...
...
lms/envs/bok_choy.py
View file @
0abd2fce
...
...
@@ -90,6 +90,11 @@ XQUEUE_INTERFACE['url'] = 'http://localhost:8040'
EDXNOTES_PUBLIC_API
=
'http://localhost:8042/api/v1'
EDXNOTES_INTERNAL_API
=
'http://localhost:8042/api/v1'
EDXNOTES_CONNECT_TIMEOUT
=
10
# time in seconds
EDXNOTES_READ_TIMEOUT
=
10
# time in seconds
NOTES_DISABLED_TABS
=
[]
# Silence noisy logs
...
...
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