test: actually unit test and lint remaining pavelib modules

We haven't unit-tested or linted these modules ever since testing was
moved from Jenkins to GitHub Actions.
This commit is contained in:
Kyle D. McCormick
2024-05-21 11:48:41 -04:00
committed by Kyle McCormick
parent e64becbdf0
commit f820961de5
3 changed files with 6 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ runs:
shell: bash
run: |
echo "root_cms_unit_tests_count=$(pytest --disable-warnings --collect-only --ds=cms.envs.test cms/ -q | head -n -2 | wc -l)" >> $GITHUB_ENV
echo "root_lms_unit_tests_count=$(pytest --disable-warnings --collect-only --ds=lms.envs.test lms/ openedx/ common/djangoapps/ xmodule/ -q | head -n -2 | wc -l)" >> $GITHUB_ENV
echo "root_lms_unit_tests_count=$(pytest --disable-warnings --collect-only --ds=lms.envs.test lms/ openedx/ common/djangoapps/ xmodule/ pavelib/ -q | head -n -2 | wc -l)" >> $GITHUB_ENV
- name: get GHA unit test paths
shell: bash