1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
From: Andreas Tille <tille@debian.org>
Date: Sun, 8 Mar 2026 11:17:36 +0100
Subject: Ignore test test_proxy_logger.py (fails to write on /tmp)
Last-Update: 2021-09-30
Running test_proxy_logger.py
E
======================================================================
ERROR: test_rotating_log (test_proxy_logger.Test_Logging)
test rotating via proxy
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/autopkgtest.f5OUlH/autopkgtest_tmp/ruffus/test/test_proxy_logger.py", line 42, in test_rotating_log
open("/tmp/lg.log", "w").close()
PermissionError: [Errno 13] Permission denied: '/tmp/lg.log'
---
ruffus/test/run_all_unit_tests3.cmd | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/ruffus/test/run_all_unit_tests3.cmd b/ruffus/test/run_all_unit_tests3.cmd
index be7e655..ade1144 100755
--- a/ruffus/test/run_all_unit_tests3.cmd
+++ b/ruffus/test/run_all_unit_tests3.cmd
@@ -4,8 +4,7 @@ echo Running test_with_logger.py
python3 -m unittest test_with_logger && \
echo Running script test_with_logger.py && \
python3 test_with_logger.py && \
-echo Running test_proxy_logger.py && \
-python3 -m unittest test_proxy_logger && \
+echo Ignoring test_proxy_logger.py && \
echo Running test_exceptions.py && \
python3 -m unittest test_exceptions && \
echo Running test_task_file_dependencies.py && \
|