File: control

package info (click to toggle)
python-coincidence 0.6.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 732 kB
  • sloc: python: 1,340; makefile: 3
file content (54 lines) | stat: -rw-r--r-- 2,435 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
47
48
49
50
51
52
53
54
Source: python-coincidence
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Josenilson Ferreira da Silva <nilsonfsilva@hotmail.com>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               pybuild-plugin-pyproject,
               python3-all,
               python3-coverage,
               python3-domdf-python-tools,
               python3-iniconfig,
               python3-pytest,
               python3-pytest-cov,
               python3-pytest-datadir,
               python3-pytest-regressions,
               python3-pytest-timeout,
               python3-setuptools,
               python3-toml,
               python3-typing-extensions,
               python3-whey
Standards-Version: 4.7.2
Homepage: https://github.com/python-coincidence/coincidence
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-coincidence
Vcs-Git: https://salsa.debian.org/python-team/packages/python-coincidence.git

Package: python3-coincidence
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends}
Description: helper functions for pytest
 The package provides fixtures and decorators for Pytest, making it easier
 configure test environments and parameterize tests. The module also enables
 specific utilities for regression testing and Pytest Decorators for selective
 test execution.
 .
 Some of the key features include:
       - fixed_datetime: Allows you to set the current date and time to
         facilitate tests that depend on timestamps.
       - path_separator: Returns the current file system path separator,
         useful for dealing with cross-platform differences.
       - tmp_pathplus: Provides a unique temporary directory for each test
         invocation as a PathPlus object.
       - count: generates a parameterized list of numbers between a specified
         range.
       - whitespace_perms: Generates permutations of whitespace characters to
         test space-related behaviors.
       - testing_boolean_values: Generates a parameterized list of strings,
         integers and booleans, facilitating the testing of boolean values
       - param: specifies parameters in pytest.mark.parametrize calls or in
         parameterized fixtures.
       - parametrized_versions: Provides a parameterized list of Python
         versions to test in different environments.