| 12
 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
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 
 | Source: tap.py
Section: python
Priority: optional
Maintainer: Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders:
 Nicolas CANIART <nicolas@caniart.net>,
 Simon McVittie <smcv@debian.org>,
Build-Depends:
 debhelper-compat (= 12),
 dh-exec,
 dh-python,
 python-all,
 python-babel,
 python-docutils,
 python-mock,
 python-more-itertools <!nocheck>,
 python-setuptools,
 python-yaml <!nocheck>,
 python3-all,
 python3-babel,
 python3-mock,
 python3-more-itertools <!nocheck>,
 python3-setuptools,
 python3-sphinx,
 python3-yaml <!nocheck>,
Rules-Requires-Root: no
Standards-Version: 4.3.0
Homepage: https://github.com/python-tap/tappy
Vcs-Git: https://salsa.debian.org/python-team/modules/tap.py.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/tap.py
Testsuite: autopkgtest-pkg-python
Package: python-tap
Architecture: all
Depends:
 ${misc:Depends},
 ${python:Depends},
Recommends:
 python-more-itertools,
 python-yaml,
Breaks:
 python-tappy (<< 1.9),
Replaces:
 python-tappy (<< 1.9),
Description: TAP producer/consumer tools for Python unittest -- Python 2 version
 The tap.py package provides a set of tools for working with the
 Test Anything Protocol (TAP). TAP is a line based test protocol
 for recording test data in a standard way.
 .
 As a TAP producer, this package comes with a test-runner that
 implements the unittest.TestRunner interface and produces TAP
 compliant output.
 .
 As a TAP consumer, it includes tools to parse the output of
 TAP compliant producers. It also provides means to replay a
 test-suite from a captured output, without having to actually
 run the tests again.
 .
 This package provide the Python 2.x version of tap.py.
Package: python-tap-doc
Architecture: all
Multi-Arch: foreign
Section: doc
Depends:
 libjs-sphinxdoc,
 ${misc:Depends},
 ${sphinxdoc:Depends},
Description: TAP producer/consumer tools for Python unittest -- documentation
 The tap.py package provides a set of tools for working with the
 Test Anything Protocol (TAP). TAP is a line based test protocol
 for recording test data in a standard way.
 .
 This package provides the documentation for developers who want
 to use the tap.py package in their applications.
Package: python3-tap
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Recommends:
 python3-more-itertools,
 python3-yaml,
Breaks:
 python-tappy (<< 1.9),
Replaces:
 python-tappy (<< 1.9),
Description: TAP producer/consumer tools for Python unittest -- Python 3 version
 The tap.py package provides a set of tools for working with the
 Test Anything Protocol (TAP). TAP is a line based test protocol
 for recording test data in a standard way.
 .
 As a TAP producer, this package comes with a test-runner that
 implements the unittest.TestRunner interface and produces TAP
 compliant output.
 .
 As a TAP consumer, it includes tools to parse the output of
 TAP compliant producers. It also provides means to replay a
 test-suite from a captured output, without having to actually
 run the tests again.
 .
 This package provide the Python 3.x version of tap.py.
Package: tappy
Architecture: all
Multi-Arch: foreign
Depends:
 python3-pkg-resources,
 python3-tap (= ${binary:Version}),
 ${misc:Depends},
 ${python3:Depends},
Conflicts:
 python-tappy,
 python3-tappy,
Replaces:
 python-tappy,
 python3-tappy,
Description: TAP consumer tool
 The tap.py package provides a set of tools for working with the
 Test Anything Protocol (TAP). TAP is a line based test protocol
 for recording test data in a standard way.
 .
 This package provides the command-line tool 'tappy', which parses
 TAP syntax in files or a stream and produces unittest-style output.
 |