fix: adding a temporal fix to allow mport course from olive+ into nutmeg #329
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: verify unit tests count | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- 'ednx-release/**' | |
jobs: | |
collect-and-verify: | |
if: (github.repository == 'edx/edx-platform-private') || (github.repository == 'openedx/edx-platform' && (startsWith(github.base_ref, 'open-release') == false)) | |
runs-on: [ edx-platform-runner ] | |
steps: | |
- name: sync directory owner | |
run: sudo chown runner:runner -R .* | |
- uses: actions/checkout@v2 | |
- name: install requirements | |
run: | | |
sudo pip install -r requirements/pip.txt | |
sudo pip install -r requirements/edx/testing.txt | |
- name: verify unit tests count | |
uses: ./.github/actions/verify-tests-count |