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
1 change: 1 addition & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
name: ${{ matrix.shard_name }}(py=${{ matrix.python-version }},dj=${{ matrix.django-version }},mongo=${{ matrix.mongo-version }})
runs-on: ${{ matrix.os-version }}
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
Expand Down
2 changes: 1 addition & 1 deletion cms/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ def make_lms_template_path(settings):
'statici18n',

# Tagging
'cms.lib.xblock.tagging',
'cms.lib.xblock.tagging.apps.TaggingConfig',

# Enables default site and redirects
'django_sites_extensions',
Expand Down
12 changes: 12 additions & 0 deletions cms/lib/xblock/tagging/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"""Expand commentComment on line R1Code has comments. Press enter to view.
Django app configuration for the XBlock tagging app
"""
from django.apps import AppConfig


class TaggingConfig(AppConfig):
"""
Django app configuration for the XBlock tagging app
"""
name = 'cms.lib.xblock.tagging'
verbose_name = 'XBlock Tagging'
2 changes: 1 addition & 1 deletion requirements/edx/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1267,7 +1267,7 @@ xblock-utils==4.0.0
# via
# edx-sga
# xblock-poll
xblocks-contrib==0.10.2
git+https://github.com/openedx/xblocks-contrib.git@farhan/video-block#egg=xblocks-contrib
# via -r requirements/edx/bundled.in
xmlsec==1.3.14
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/edx/development.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2295,7 +2295,7 @@ xblock-utils==4.0.0
# -r requirements/edx/testing.txt
# edx-sga
# xblock-poll
xblocks-contrib==0.10.2
git+https://github.com/openedx/xblocks-contrib.git@farhan/video-block#egg=xblocks-contrib
# via
# -r requirements/edx/doc.txt
# -r requirements/edx/testing.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements/edx/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1606,7 +1606,7 @@ xblock-utils==4.0.0
# -r requirements/edx/base.txt
# edx-sga
# xblock-poll
xblocks-contrib==0.10.2
git+https://github.com/openedx/xblocks-contrib.git@farhan/video-block#egg=xblocks-contrib
# via -r requirements/edx/base.txt
xmlsec==1.3.14
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/edx/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1696,7 +1696,7 @@ xblock-utils==4.0.0
# -r requirements/edx/base.txt
# edx-sga
# xblock-poll
xblocks-contrib==0.10.2
git+https://github.com/openedx/xblocks-contrib.git@farhan/video-block#egg=xblocks-contrib
# via -r requirements/edx/base.txt
xmlsec==1.3.14
# via
Expand Down
Loading