-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ data_file = reports/.coverage | |
source = | ||
cms | ||
common/djangoapps | ||
common/lib/xmodule | ||
lms | ||
openedx | ||
pavelib | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Setup npm | ||
run: npm i -g [email protected] | ||
|
||
|
@@ -64,7 +64,7 @@ jobs: | |
- name: Install Required Python Dependencies | ||
run: | | ||
pip install -r requirements/pip.txt | ||
pip install -r requirements/edx/base.txt | ||
make base-requirements | ||
- uses: c-hive/gha-npm-cache@v1 | ||
- name: Run JS Tests | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,6 +67,8 @@ jobs: | |
run: | | ||
pip install -r requirements/pip.txt | ||
pip install -r requirements/edx/development.txt --src ${{ runner.temp }} | ||
# edx-platform installs some Python projects from within the edx-platform repo itself. | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
timmc-edx
Contributor
|
||
pip install -e . | ||
pip install "django~=${{ matrix.django-version }}.0" | ||
|
||
- name: Setup and run tests | ||
|
@@ -106,7 +108,7 @@ jobs: | |
- name: Install Required Python Dependencies | ||
run: | | ||
pip install -r requirements/pip.txt | ||
pip install -r requirements/edx/development.txt --src ${{ runner.temp }} | ||
make dev-requirements | ||
pip install "django~=${{ matrix.django-version }}.0" | ||
- name: verify unit tests count | ||
|
This file was deleted.
This file was deleted.
This file was deleted.
I believe this creates a syntax error. Not sure how to test this workflow, though.