File: control

package info (click to toggle)
python-proboscis 1.2.6.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 180 kB
  • sloc: python: 1,103; makefile: 13
file content (46 lines) | stat: -rw-r--r-- 1,663 bytes parent folder | download
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
35
36
37
38
39
40
41
42
43
44
45
46
Source: python-proboscis
Section: python
Priority: optional
Maintainer: Debian OpenStack <team+openstack@tracker.debian.org>
Uploaders:
 Thomas Goirand <zigo@debian.org>,
Build-Depends:
 debhelper-compat (= 12),
 dh-python,
 openstack-pkg-tools,
 python3-all,
 python3-nose,
 python3-setuptools,
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/openstack-team/python/python-proboscis
Vcs-Git: https://salsa.debian.org/openstack-team/python/python-proboscis.git
Homepage: https://github.com/rackerlabs/python-proboscis
Testsuite: autopkgtest-pkg-python

Package: python3-proboscis
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Recommends:
 ${python3:Recommends},
Description: extends Nose with certain TestNG like features - Python 3.x
 Proboscis is a Python test framework that extends Python's built-in unittest
 module and Nose with features from TestNG.
 .
 TestNG is a testing framework inspired from JUnit and NUnit but introducing
 some new functionalities that make it more powerful and easier to use.
 .
 Features:
  * Uses decorators instead of naming conventions.
  * Allows for TestNG style test methods, in which a class is initialized once,
    as an alternative to using class fields.
  * Allows for explicit test dependencies and skipping of dependent tests on
    failures.
  * Runs xUnit style clases if desired or needed for backwards compatibility.
  * Uses Nose if available (but doesn't require it), and works with many of
    its plugins.
  * Runs in IronPython and Jython (although if you're targeting the JVM you
    should consider using TestNG instead).
 .
 This package provides the Python 3.x module.