Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pytest-pudb

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pytest-pudb

Pytest PuDB debugger integration

  • 0.7.0
  • PyPI
  • Socket score

Maintainers
1

=========== pytest-pudb

.. image:: https://travis-ci.org/wronglink/pytest-pudb.svg?branch=master :target: https://travis-ci.org/wronglink/pytest-pudb :alt: Travis-ci: continuous integration status.

Pytest PuDB debugger integration based on pytest PDB integration_

Use it as --pdb py.test command argument:

.. code-block:: console

py.test --pudb

Or simply use pudb.set_trace inside your python code:

.. code-block:: python

def test_set_trace_integration():
    # No --capture=no need
    import pudb
    pudb.set_trace()
    assert 1 == 2

def test_pudb_b_integration():
    # No --capture=no need
    import pudb.b
    # traceback is set up here
    assert 1 == 2

See also pytest_ and pudb_ projects.

.. _PDB integration: http://doc.pytest.org/en/latest/usage.html#dropping-to-pdb-python-debugger-on-failures .. _pudb: https://pypi.python.org/pypi/pudb .. _pytest: https://pypi.python.org/pypi/pytest

History

0.7.0 (2018-10-25) ++++++++++++++++++

  • Added pu.db support
  • Fixed pytest 3.7.3+ compatibility
  • Switched to semantic versioning
  • Build package wheels

0.6 (2018-02-13) ++++++++++++++++

  • Fixed pytest 3.3.1+ compatibility (by @noirbizarre <https://github.com/noirbizarre>_)

0.5 (2017-02-25) ++++++++++++++++

  • Fixed pypi package by adding MANIFEST.in

0.4 (2017-02-24) ++++++++++++++++

  • Use post mortem on exception (by @Wilfred <https://github.com/Wilfred>_)

0.2 (2016-09-24) ++++++++++++++++

  • Added import pytest.b support

0.1 (2016-07-31) ++++++++++++++++

  • Public release

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc