diff --git a/.github/workflows/capture_new_migrations.yml b/.github/workflows/capture_new_migrations.yml index a8dff4fd73e..28458139b23 100644 --- a/.github/workflows/capture_new_migrations.yml +++ b/.github/workflows/capture_new_migrations.yml @@ -154,26 +154,26 @@ jobs: - name: Checkout branch repo uses: actions/checkout@v2 -# - name: Install Python dependencies -# run: | -# make dev-requirements -# if [[ "${{ matrix.django-version }}" != "pinned" ]]; then -# pip install "django~=${{ matrix.django-version }}.0" -# pip check # fail if this test-reqs/Django combination is broken -# fi + - name: Install Python dependencies + run: | + make dev-requirements + if [[ "${{ matrix.django-version }}" != "pinned" ]]; then + pip install "django~=${{ matrix.django-version }}.0" + pip check # fail if this test-reqs/Django combination is broken + fi # -# - name: list installed package versions -# run: | -# pip freeze + - name: list installed package versions + run: | + pip freeze -# - name: Run Tests -# env: -# LMS_CFG: lms/envs/minimal.yml -# # This is from the LMS dir on purpose since we don't need anything different for the CMS yet. -# STUDIO_CFG: lms/envs/minimal.yml -# run: | -# echo "Running the LMS migrations." -# ./manage.py lms migrate + - name: Run Tests + env: + LMS_CFG: lms/envs/minimal.yml + # This is from the LMS dir on purpose since we don't need anything different for the CMS yet. + STUDIO_CFG: lms/envs/minimal.yml + run: | + echo "Running the LMS migrations." + ./manage.py lms migrate social_django # echo "Running the CMS migrations." # ./manage.py cms migrate