Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion requirements/edx/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ lazy==1.6
# lti-consumer-xblock
# ora2
# xblock
lti-consumer-xblock==10.0.0
lti-consumer-xblock @ git+https://github.com/open-craft/xblock-lti-consumer@navin/FAL-4318/reuse-config-data
# via -r requirements/edx/kernel.in
lxml[html-clean]==5.3.2
# via
Expand Down Expand Up @@ -846,6 +846,7 @@ openedx-events==10.5.0
# edx-event-bus-kafka
# edx-event-bus-redis
# event-tracking
# lti-consumer-xblock
# ora2
openedx-filters==2.1.0
# via
Expand Down
3 changes: 2 additions & 1 deletion requirements/edx/development.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ libsass==0.10.0
# via
# -c requirements/constraints.txt
# -r requirements/edx/assets.txt
lti-consumer-xblock==10.0.0
lti-consumer-xblock @ git+https://github.com/open-craft/xblock-lti-consumer@navin/FAL-4318/reuse-config-data
# via
# -r requirements/edx/doc.txt
# -r requirements/edx/testing.txt
Expand Down Expand Up @@ -1408,6 +1408,7 @@ openedx-events==10.5.0
# edx-event-bus-kafka
# edx-event-bus-redis
# event-tracking
# lti-consumer-xblock
# ora2
openedx-filters==2.1.0
# via
Expand Down
3 changes: 2 additions & 1 deletion requirements/edx/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ lazy==1.6
# lti-consumer-xblock
# ora2
# xblock
lti-consumer-xblock==10.0.0
lti-consumer-xblock @ git+https://github.com/open-craft/xblock-lti-consumer@navin/FAL-4318/reuse-config-data
# via -r requirements/edx/base.txt
lxml[html-clean]==5.3.2
# via
Expand Down Expand Up @@ -1026,6 +1026,7 @@ openedx-events==10.5.0
# edx-event-bus-kafka
# edx-event-bus-redis
# event-tracking
# lti-consumer-xblock
# ora2
openedx-filters==2.1.0
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/edx/kernel.in
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jsonfield # Django model field for validated JSON; use
laboratory # Library for testing that code refactors/infrastructure changes produce identical results
importlib_metadata # Used to access entry_points in i18n_api plugin
lxml[html_clean] # XML parser
lti-consumer-xblock>=9.14.2
lti-consumer-xblock @ git+https://github.com/open-craft/xblock-lti-consumer@navin/FAL-4318/reuse-config-data
mako # Primary template language used for server-side page rendering
Markdown # Convert text markup to HTML; used in capa problems, forums, and course wikis
meilisearch # Library to access Meilisearch search engine (will replace ElasticSearch)
Expand Down
3 changes: 2 additions & 1 deletion requirements/edx/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ lazy==1.6
# lti-consumer-xblock
# ora2
# xblock
lti-consumer-xblock==10.0.0
lti-consumer-xblock @ git+https://github.com/open-craft/xblock-lti-consumer@navin/FAL-4318/reuse-config-data
# via -r requirements/edx/base.txt
lxml[html-clean]==5.3.2
# via
Expand Down Expand Up @@ -1075,6 +1075,7 @@ openedx-events==10.5.0
# edx-event-bus-kafka
# edx-event-bus-redis
# event-tracking
# lti-consumer-xblock
# ora2
openedx-filters==2.1.0
# via
Expand Down
6 changes: 3 additions & 3 deletions xmodule/modulestore/tests/test_mixed_modulestore.py
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ def test_has_changes_missing_child(self, default_ms, default_branch):
# check CONTENT_TAGGING_AUTO CourseWaffleFlag
# Find: active_versions, 2 structures (published & draft), definition (unnecessary)
# Sends: updated draft and published structures and active_versions
@ddt.data((ModuleStoreEnum.Type.split, 5, 2, 3))
@ddt.data((ModuleStoreEnum.Type.split, 11, 2, 3))
@ddt.unpack
def test_delete_item(self, default_ms, num_mysql, max_find, max_send):
"""
Expand All @@ -1149,7 +1149,7 @@ def test_delete_item(self, default_ms, num_mysql, max_find, max_send):
# check CONTENT_TAGGING_AUTO CourseWaffleFlag
# find: draft and published structures, definition (unnecessary)
# sends: update published (why?), draft, and active_versions
@ddt.data((ModuleStoreEnum.Type.split, 5, 3, 3))
@ddt.data((ModuleStoreEnum.Type.split, 11, 3, 3))
@ddt.unpack
def test_delete_private_vertical(self, default_ms, num_mysql, max_find, max_send):
"""
Expand Down Expand Up @@ -1199,7 +1199,7 @@ def test_delete_private_vertical(self, default_ms, num_mysql, max_find, max_send
# check CONTENT_TAGGING_AUTO CourseWaffleFlag
# find: structure (cached)
# send: update structure and active_versions
@ddt.data((ModuleStoreEnum.Type.split, 5, 1, 2))
@ddt.data((ModuleStoreEnum.Type.split, 11, 1, 2))
@ddt.unpack
def test_delete_draft_vertical(self, default_ms, num_mysql, max_find, max_send):
"""
Expand Down
Loading