Skip to content

Commit b1e8d0b

Browse files
committed
tidy
1 parent 1f3d2a8 commit b1e8d0b

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

.github/workflows/sonarcloud.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ jobs:
8686
poetry install
8787
poetry run coverage run -m unittest discover || echo "delta tests failed" >> ../failed_tests.txt
8888
poetry run coverage xml -o ../delta-coverage.xml
89-
cat ../delta-coverage.xml
9089
9190
- name: Run unittest with coverage-fhir-api
9291
working-directory: backend
@@ -130,7 +129,6 @@ jobs:
130129
poetry install
131130
poetry run coverage run --rcfile=.coveragerc --source=src -m unittest discover -s tests -p "test_*.py" -v || echo "shared tests failed" >> ../../failed_tests.txt
132131
poetry run coverage xml -o ../../shared-coverage.xml
133-
cat ../../shared-coverage.xml
134132
135133
- name: Run unittest with id_sync
136134
working-directory: lambdas/id_sync
@@ -143,7 +141,6 @@ jobs:
143141
poetry install
144142
poetry run coverage run --rcfile=.coveragerc --source=src -m unittest discover || echo "id_sync tests failed" >> ../../failed_tests.txt
145143
poetry run coverage xml -o ../../id_sync-coverage.xml
146-
cat ../../id_sync-coverage.xml
147144
148145
- name: Run Test Failure Summary
149146
id: check_failure

azure/templates/post-deploy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ steps:
5656
echo Apigee environment: $APIGEE_ENVIRONMENT
5757
echo pr_no: $pr_no
5858
59-
echo "Output dirs"
60-
ls
6159
cd terraform
6260
6361
make init

lambdas/id_sync/tests/test_id_sync.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import unittest
22
from unittest.mock import patch, MagicMock
3-
import json
43

54

65
with patch('common.log_decorator.logging_decorator') as mock_decorator:

redis_sync/src/clients.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
logger = logging.getLogger()
99
logger.setLevel("INFO")
1010

11-
STREAM_NAME = os.getenv("SPLUNK_FIREHOSE_NAME", "firehose-name-not-defined")
12-
CONFIG_BUCKET_NAME = os.getenv("CONFIG_BUCKET_NAME", "variconfig-bucketable-not-defined")
11+
STREAM_NAME = os.getenv("SPLUNK_FIREHOSE_NAME", "immunisation-fhir-api-internal-dev-splunk-firehose")
12+
CONFIG_BUCKET_NAME = os.getenv("CONFIG_BUCKET_NAME", "variable-not-defined")
1313

1414
REGION_NAME = os.getenv("AWS_REGION", "eu-west-2")
1515
REDIS_HOST = os.getenv("REDIS_HOST", "")

0 commit comments

Comments
 (0)