File: control

package info (click to toggle)
python-nose-testconfig 0.9-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 152 kB
  • sloc: python: 172; makefile: 3
file content (45 lines) | stat: -rw-r--r-- 1,661 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
Source: python-nose-testconfig
Section: python
Priority: optional
Maintainer: Debian OpenStack <openstack-devel@lists.alioth.debian.org>
Uploaders:
 Julien Danjou <acid@debian.org>,
 Thomas Goirand <zigo@debian.org>,
 Mehdi Abaakouk <sileht@sileht.net>,
Build-Depends:
 debhelper (>= 11),
 openstack-pkg-tools,
 python-all,
 python-setuptools,
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/openstack-team/python/python-nose-testconfig
Vcs-Git: https://salsa.debian.org/openstack-team/python/python-nose-testconfig.git
Homepage: https://pypi.python.org/pypi/nose-testconfig

Package: python-nose-testconfig
Architecture: all
Depends:
 python-nose,
 ${misc:Depends},
 ${python:Depends},
Description: test configuration plugin for nosetests
 nose-testconfig is a plugin to the nose test framework which provides a
 faculty for passing test-specific (or test-run specific) configuration data to
 the tests being executed.
 .
 Currently configuration files in the following formats are supported:
   * YAML (via python-yaml)
   * INI (via ConfigParser)
   * Pure Python (via Exec)
   * JSON
 .
 The plugin is meant to be flexible, ergo the support of exec'ing arbitrary
 Python files as configuration files with no checks. The default format is
 assumed to be ConfigParser ini-style format.
 .
 The plugin provides a method of overriding certain parameters from the command
 line (assuming that the main "config" object is a dict) and can easily have
 additional parsers added to it.
 .
 A configuration file may not be provided. In this case, the config object is an
 empty dict. Any command line "overriding" parameters will be added to the dict.