josh-fell edited a comment on pull request #18456: URL: https://github.com/apache/airflow/pull/18456#issuecomment-925488306
The failing CI tests succeed locally and it looks like the tests are not executing the updated unit test code from this PR which is why they are throwing exceptions. For example with the Sqlite, Py3.6 test these are the results running locally:  Here is an example of outdated code relative to this PR: **Executed code** ```python # connect with vm configuration db.merge_conn( Connection( conn_id=self.test_vm_conn_id, conn_type="azure_batch", extra=json.dumps( { "account_name": self.test_account_name, "account_key": self.test_account_key, "account_url": self.test_account_url, "vm_publisher": self.test_vm_publisher, "vm_offer": self.test_vm_offer, "vm_sku": self.test_vm_sku, "node_agent_sku_id": self.test_node_agent_sku, } ), ) ) ``` **Updated code in PR** ```python # connect with vm configuration db.merge_conn( Connection( conn_id=self.test_vm_conn_id, conn_type="azure_batch", extra=json.dumps({"extra__azure_batch__account_url": self.test_account_url}), ) ) ``` Happy to close/reopen this PR if you think that will do the trick but maybe I'm missing something obvious. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
