flub/dev/: pytest-2.7.1 metadata and description

pytest: simple powerful testing with Python

Metadata
author Holger Krekel, Benjamin Peterson, Ronny Pfannschmidt, Floris Bruynooghe and others
author_email holger at merlinux.eu
classifiers
  • Development Status :: 6 - Mature
  • Intended Audience :: Developers
  • License :: OSI Approved :: MIT License
  • Operating System :: POSIX
  • Operating System :: Microsoft :: Windows
  • Operating System :: MacOS :: MacOS X
  • Topic :: Software Development :: Testing
  • Topic :: Software Development :: Libraries
  • Topic :: Utilities
  • Programming Language :: Python :: 2
  • Programming Language :: Python :: 2.6
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.2
  • Programming Language :: Python :: 3.3
  • Programming Language :: Python :: 3.4
license MIT license
Files
File Tox results History
pytest-2.7.1-py2.py3-none-any.whl
Size
124 KB
Type
Python Wheel
Python
2.7
sha256
811df7103d5aa50f7b614f6545490a889729a81b3f6dfb6edc518b48ce656bc3
  • Uploaded to flub/dev by flub 2015-05-19 00:48:12
pytest-2.7.1.tar.gz
Size
519 KB
Type
Source
sha256
530f23c79e1b13850e93f3a59720f1eca75bad01307dc4fd694a6a19619fb9cb
laurie.devork.be linux doctesting 3.3.5 Tests passed
laurie.devork.be linux flakes 3.4.1 Tests failed
laurie.devork.be linux py26 2.6.9 Tests passed
laurie.devork.be linux py27 2.7.8 Tests passed
laurie.devork.be linux py27-cxfreeze 2.7.8 Tests passed
laurie.devork.be linux py27-nobyte 2.7.8 Tests passed
laurie.devork.be linux py27-pexpect 2.7.8 Tests passed
laurie.devork.be linux py27-trial 2.7.8 Tests passed
laurie.devork.be linux py27-xdist 2.7.8 Tests passed
laurie.devork.be linux py33 3.3.5 Tests passed
laurie.devork.be linux py33-pexpect 3.3.5 Tests passed
laurie.devork.be linux py33-trial 3.3.5 Tests passed
laurie.devork.be linux py33-xdist 3.3.5 Tests passed
laurie.devork.be linux py34 3.4.1 Tests passed
laurie.devork.be linux pypy 2.7.8 Tests passed
All toxresults …
  • Uploaded to flub/dev by flub 2015-05-19 00:48:07
https://pypip.in/v/pytest/badge.png

Documentation: http://pytest.org/latest/

Changelog: http://pytest.org/latest/changelog.html

Issues: https://bitbucket.org/pytest-dev/pytest/issues?status=open

CI: https://drone.io/bitbucket.org/pytest-dev/pytest

The pytest testing tool makes it easy to write small tests, yet scales to support complex functional testing. It provides

  • auto-discovery of test modules and functions,

  • detailed info on failing assert statements (no need to remember self.assert* names)

  • modular fixtures for managing small or parametrized long-lived test resources.

  • multi-paradigm support: you can use pytest to run test suites based on unittest (or trial), nose

  • single-source compatibility from Python2.6 all the way up to Python3.4, PyPy-2.3, (jython-2.5 untested)

  • many external plugins.

A simple example for a test:

# content of test_module.py
def test_function():
    i = 4
    assert i == 3

which can be run with py.test test_module.py. See getting-started for more examples.

For much more info, including PDF docs, see

http://pytest.org

and report bugs at:

http://bitbucket.org/pytest-dev/pytest/issues/

and checkout or fork repo at:

http://bitbucket.org/pytest-dev/pytest/

Copyright Holger Krekel and others, 2004-2014 Licensed under the MIT license.