aider-chat: skip version check in tests (#341441)

This commit is contained in:
h7x4 2024-09-16 23:06:39 +02:00 committed by GitHub
commit d43d78b0b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,6 +95,8 @@ python3.pkgs.buildPythonApplication {
"test_browser_flag_imports_streamlit"
# AttributeError
"test_simple_send_with_retries"
# Expected 'check_version' to have been called once
"test_main_exit_calls_version_check"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# Tests fails on darwin
@ -104,6 +106,7 @@ python3.pkgs.buildPythonApplication {
preCheck = ''
export HOME=$(mktemp -d)
export AIDER_CHECK_UPDATE=false
'';
meta = {