From 73bb510389742062a3b56cbbe13357a28ca67d22 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Fri, 3 Jul 2015 07:35:41 +0200 Subject: [PATCH] autopkgtest.py: Clarify comments where the "pending tests" state file lives --- autopkgtest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autopkgtest.py b/autopkgtest.py index 4ed789f..2cef5b1 100644 --- a/autopkgtest.py +++ b/autopkgtest.py @@ -85,7 +85,7 @@ class AutoPackageTest(object): def read_pending_tests(self): '''Read pending test requests from previous britney runs - Read test_state_dir/requested.txt with the format: + Read UNSTABLE/autopkgtest/requested.txt with the format: srcpkg srcver triggering-srcpkg triggering-srcver Initialize self.pending_tests with that data. @@ -119,8 +119,8 @@ class AutoPackageTest(object): def update_pending_tests(self): '''Update pending tests after submitting requested tests - Update test_state_dir/requested.txt, see read_pending_tests() for the - format. + Update UNSTABLE/autopkgtest/requested.txt, see read_pending_tests() for + the format. ''' # merge requested_tests into pending_tests for src, verinfo in self.requested_tests.items():