Joerg Jaspert pushed to branch deploy at Debian FTP Team / dak
Commits:
-
07fcfd60
by Joerg Jaspert at 2019-03-25T22:08:36Z
-
fad1a4ec
by Gabriel Francisco at 2019-03-25T22:08:41Z
-
b353120b
by Joerg Jaspert at 2019-03-25T22:08:47Z
5 changed files:
- config/debian/dinstall.tasks
- config/debian/hourly.functions
- config/debian/unchecked.tasks
- dak/admin.py
- tests/test_parse_changes.py
Changes:
| ... | ... | @@ -13,7 +13,7 @@ i18n1 none i18n\ 1 fal |
| 13 | 13 |
dep11 none dep11\ 1 false true
|
| 14 | 14 |
LOCK UNCHECKED 1200 exclusive false
|
| 15 | 15 |
punew stable-new p-u-new false false
|
| 16 |
-opunew oldstable-new o-p-u-new false false
|
|
| 16 |
+# opunew oldstable-new o-p-u-new false false
|
|
| 17 | 17 |
backports_policy none backports-policy false false
|
| 18 | 18 |
cruft none cruft true false
|
| 19 | 19 |
NOSTAGE state\ indices none false false
|
| ... | ... | @@ -22,7 +22,8 @@ function do_report() { |
| 22 | 22 |
|
| 23 | 23 |
function queuereport() {
|
| 24 | 24 |
log "Creating queue reports, new/backports-new, 822 format"
|
| 25 |
- local queues="new,byhand,stable-new,oldstable-new"
|
|
| 25 |
+ #local queues="new,byhand,stable-new,oldstable-new"
|
|
| 26 |
+ local queues="new,byhand,stable-new"
|
|
| 26 | 27 |
local bpqueues="backports-new,backports-policy"
|
| 27 | 28 |
local gqueues="${queues},${bpqueues},deferred"
|
| 28 | 29 |
do_report
|
| ... | ... | @@ -4,7 +4,7 @@ LOCK DAILY 600 sha |
| 4 | 4 |
LOCK UNCHECKED 600 exclusive false
|
| 5 | 5 |
pg_timestamp preunchecked none true false
|
| 6 | 6 |
punew stable-new p-u-new false false
|
| 7 |
-opunew oldstable-new o-p-u-new false false
|
|
| 7 |
+# opunew oldstable-new o-p-u-new false false
|
|
| 8 | 8 |
backports_policy none backports-policy false false
|
| 9 | 9 |
cleanpolicy none cleanpolicy false false
|
| 10 | 10 |
fetchqueuedpackages upload-master fetchqueuedpackages false false
|
| ... | ... | @@ -105,6 +105,7 @@ Perform administrative work on the dak database. |
| 105 | 105 |
add suite SUITE, version VERSION.
|
| 106 | 106 |
label, description, origin, codename
|
| 107 | 107 |
and signingkey are optional.
|
| 108 |
+ s rm SUITE remove a suite (will only work if empty)
|
|
| 108 | 109 |
|
| 109 | 110 |
s add-all-arches SUITE VERSION... as "s add" but adds suite-architecture
|
| 110 | 111 |
relationships for all architectures
|
| ... | ... | @@ -63,7 +63,7 @@ class ParseDscTestCase(ParseChangesTestCase): |
| 63 | 63 |
def test_9(self):
|
| 64 | 64 |
changes = self.assertParse('dsc/9.dsc', -1, 1)
|
| 65 | 65 |
self.assert_(changes['question'] == 'Is this a bug?')
|
| 66 |
- self.failIf(changes.get('this'))
|
|
| 66 |
+ self.assertFalse(changes.get('this'))
|
|
| 67 | 67 |
|
| 68 | 68 |
def test_10(self):
|
| 69 | 69 |
changes = self.assertParse('dsc/10.dsc', -1, 1)
|
| ... | ... | @@ -92,7 +92,7 @@ class ParseChangesTestCase(ParseChangesTestCase): |
| 92 | 92 |
'changes/%s.changes' % filename,
|
| 93 | 93 |
strict_whitespace,
|
| 94 | 94 |
)
|
| 95 |
- self.failIf(changes.get('you'))
|
|
| 95 |
+ self.assertFalse(changes.get('you'))
|
|
| 96 | 96 |
|
| 97 | 97 |
if __name__ == '__main__':
|
| 98 | 98 |
unittest.main()
|