Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ci_module.yml #180

Merged
merged 1 commit into from
Oct 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci_module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,8 @@ jobs:
run: |
python -V
export MODULES=$(jq -r '(.modules[].name)' ../openimis.json | xargs)
# Remove api_fhir_r4 from MODULES
MODULES=$(echo "$MODULES" | sed 's/api_fhir_r4//g' | xargs)
echo $MODULES
python manage.py test --debug-mode --timing --keepdb $MODULES
env:
Expand Down Expand Up @@ -297,6 +299,9 @@ jobs:
run: |
python -V
export MODULES=$(jq -r '(.modules[].name)' ../openimis.json | xargs)

# Remove api_fhir_r4 from MODULES
MODULES=$(echo "$MODULES" | sed 's/api_fhir_r4//g' | xargs)
echo $MODULES
# Generate sonar report
export MODULE_NAME="$(echo $GITHUB_REPOSITORY | sed 's#^openimis/openimis-be-\(.*\)_py$#\1#')"
Expand Down