File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 88from unittest .mock import patch , Mock
99from moto import mock_dynamodb , mock_sqs
1010from boto3 import resource as boto3_resource , client as boto3_client
11- from utils_for_converter_tests import ValuesForTests , ErrorValuesForTests
11+ from tests . utils_for_converter_tests import ValuesForTests , ErrorValuesForTests
1212from botocore .config import Config
1313from pathlib import Path
1414from SchemaParser import SchemaParser
1515from Converter import Converter
1616from ConversionChecker import ConversionChecker
1717
1818
19+ # "AWS_SQS_QUEUE_URL": "https://sqs.eu-west-2.amazonaws.com/123456789012/test-queue",
20+
1921MOCK_ENV_VARS = {
20- "AWS_SQS_QUEUE_URL" : "https://sqs.eu-west-2.amazonaws.com/123456789012/test-queue" ,
2122 "DELTA_TABLE_NAME" : "immunisation-batch-internal-dev-audit-test-table" ,
2223 "SOURCE" : "test-source" ,
2324}
Original file line number Diff line number Diff line change 22from unittest .mock import patch , MagicMock
33from botocore .exceptions import ClientError
44import os
5- from sample_data .test_resource_data import get_test_data_resource
5+ from tests . sample_data .test_resource_data import get_test_data_resource
66
77# Set environment variables before importing the module
88mock_queue = "https://sqs.us-east-1.amazonaws.com/123456789012/MyQueue"
You can’t perform that action at this time.
0 commit comments