potiuk commented on PR #27357: URL: https://github.com/apache/airflow/pull/27357#issuecomment-1304987648
> Not really sure what to make of the test failures now, though I think I saw this failure on a few previous test runs (but not all). > > ``` > > assert sorted(list_of_sa_names_in_objects) == sorted(CUSTOM_SERVICE_ACCOUNT_NAMES) > E AssertionError: assert ['TestCleanup...stRedis', ...] == ['TestCleanup...stRedis', ...] > E Left contains one more item: 'default' > E Use -v to get the full diff > ``` > > It seems like this is saying there is an extra ServiceAccount being created called `default`? You can just run the test yourself. It's easy to run the tests and you should be able to debug it with pytest. You can run the pytest tests inside `breeze` development environment - https://github.com/apache/airflow/blob/main/BREEZE.rst. Should take few minutes to set-up and then once you enter Breeze you shouls be able to run `pytest tests/chart/.....` and debug and see more details on what is the problem. Also apparently the K8S tests fail - airflow installation via the Helm Chart fails with timeout. You can a https://github.com/apache/airflow/blob/main/TESTING.rst#running-tests-with-kubernetes - there you can see even step-by-step instructions how to create cluster, deploy airflow and run tests. Likely you would need to see in the k8s logs why installing airflow via the Helm chart fails (again breeze has full support to make it super- easy including running k9s tool that helps with k8s inspection and debugging). -- 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]
