You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

testify

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

testify

Testing framework

0.11.3
pipPyPI
Maintainers
1

Testify - A Testing Framework

Testify is a replacement for Python's unittest module and nose. It is modeled after unittest, and tests written for unittest will run under testify with a minimum of adjustments, but it has features above and beyond unittest:

  • class-level setup and teardown fixture methods which are run once each for an entire set of test methods.
  • a decorator-based approach for fixture methods, eliminating the need for super() calls.
  • More pythonic, less java
  • enhanced test discovery - testify can drill down into packages to find test cases (similiar to nose).
  • support for collecting and running tests by collecting modules, classes or methods into test suites.
  • Pretty test runner output (color!)
  • Extensible plugin system for adding additional functionality around reporting
  • Comes complete with other handy testing utilities: Mocking (turtle), code coverage integration and profiling.

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