Merge pull request #30403 from openedx/iamsobanjaved/BOM-2582-move-common-lib-capa

refactor: move common/lib/capa/capa to xmodule/capa
This commit is contained in:
Muhammad Soban Javed
2022-07-21 16:27:47 +05:00
committed by GitHub
121 changed files with 144 additions and 182 deletions

View File

@@ -261,12 +261,6 @@
]
},
"common-2": {
"settings": "lms.envs.test",
"paths": [
"common/lib/"
]
},
"common-3": {
"settings": "cms.envs.test",
"paths": [
"common/djangoapps/"

View File

@@ -31,7 +31,6 @@ jobs:
"cms-2",
"common-1",
"common-2",
"common-3",
"xmodule-1"
]
@@ -62,7 +61,7 @@ jobs:
- name: install requirements
run: |
sudo pip install -r requirements/pip.txt
sudo pip install -r requirements/edx/testing.txt
sudo pip install --exists-action='w' -r requirements/edx/testing.txt
if [[ "${{ matrix.django-version }}" == "pinned" ]]; then
sudo pip install -r requirements/edx/django.txt
else

View File

@@ -18,7 +18,7 @@ jobs:
- name: install requirements
run: |
sudo pip install -r requirements/pip.txt
sudo pip install -r requirements/edx/testing.txt
sudo pip install --exists-action='w' -r requirements/edx/testing.txt
- name: verify unit tests count
uses: ./.github/actions/verify-tests-count