-
Notifications
You must be signed in to change notification settings - Fork 14.3k
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
Issue-41243 Unpin the moto dependency #41256
Issue-41243 Unpin the moto dependency #41256
Conversation
fd90d5a
to
1893dcd
Compare
The tests should also be made compatible with older versions of Airflow / moto constraints - as we are running the same tests with older versions of Airflow as well, so I guess checking for both variants should solve it. |
1893dcd
to
e55e078
Compare
I see. Fixed it accordingly |
You need to rebase and:
|
19647d2
to
000dbdb
Compare
cbe6ba2
to
42bfbb1
Compare
Tests are still failing, did you run |
I ran them, but they formatted the files as @@ -46,7 +46,7 @@
"devel-deps": [
"aiobotocore>=2.13.0",
"aws_xray_sdk>=2.12.0",
- "moto[cloudformation,glue]>=5.0.0",
+ "moto[cloudformation,glue]>=5.0.0,",
"mypy-boto3-appflow>=1.34.0", Not really sure, why it puts that comma after the Checking why that actually happens EDIT: Nevermind. There was a stupid error there. Fixed it |
42bfbb1
to
8df3c68
Compare
8df3c68
to
d3f9861
Compare
Looks like some unrelated tests are failing...:( |
09009ba
to
4828dd5
Compare
4828dd5
to
5a91b36
Compare
The exception should be `ExportTaskNotFound` (and not `ExportTaskNotFoundFault`) as recorded here: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeExportTasks.html The moto version dependency pin is updated to reflect this. Older versions of moto will not succeed this test case, hence the version pin is bumped to 5.0.12
5a91b36
to
f486be0
Compare
Awesome work, congrats on your first merged pull request! You are invited to check our Issue Tracker for additional contributions. |
The exception should be `ExportTaskNotFound` (and not `ExportTaskNotFoundFault`) as recorded here: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeExportTasks.html The moto version dependency pin is updated to reflect this. Older versions of moto will not succeed this test case, hence the version pin is bumped to 5.0.12 Co-authored-by: Vikram Gaonkar <[email protected]>
The exception should be `ExportTaskNotFound` (and not `ExportTaskNotFoundFault`) as recorded here: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeExportTasks.html The moto version dependency pin is updated to reflect this. Older versions of moto will not succeed this test case, hence the version pin is bumped to 5.0.12 Co-authored-by: Vikram Gaonkar <[email protected]>
The exception should be
ExportTaskNotFound
(and notExportTaskNotFoundFault
) as recorded here:https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeExportTasks.html
closes: #41243
^ Add meaningful description above
Read the Pull Request Guidelines for more information.
In case of fundamental code changes, an Airflow Improvement Proposal (AIP) is needed.
In case of a new dependency, check compliance with the ASF 3rd Party License Policy.
In case of backwards incompatible changes please leave a note in a newsfragment file, named
{pr_number}.significant.rst
or{issue_number}.significant.rst
, in newsfragments.