PyCharm 2017.2 Help

Testing Frameworks

PyCharm enables usage of the following testing frameworks:

This feature is supported in the Professional edition only.

Prerequisites

Before you start working with the testing framework of your choice, make sure that:

  • The desired framework is installed on your machine. Refer to the framework documentation for the installation details.
  • The default test runner is selected (Settings/Preferences | Tools | Python Integrated Tools - Default test runner)
    /help/img/idea/2017.2/py_test_runner.png

    If the selected test runner is missing in the specified interpreter, the appropriate notification appears. Click the Fix button to download and install the corresponding framework.

    With the test runner selected, PyCharm suggests the appropriate default run/debug configuration:

    /help/img/idea/2017.2/py_test_runconfig.png

Testing frameworks support

For each of the supported testing frameworks, PyCharm provides:

  • Code completion, aware of the specific testing framework.
  • Run/debug configurations.
  • Ability to create tests .
  • Ability to navigate between tests and test subjects.
  • Ability to run tests from within the IDE, and view test results in the test runner UI. The test results are shown on the Test Runner tab of the Run tool window.
  • Ability to run all tests or features in a directory, specific test classes, test cases or features, individual test methods or examples.
  • Code inspections.
  • In docstrings:
    • PyCharm recognizes Python code, provides syntax highlighting, code completion and resolve, and Python inspections.
    • Aibility to recognize Python code can be turned on or off.
    • If doctests are presented as separate files, PyCharm allows opening such files as reStructuredText files with *.rst extension. Such files are marked with /help/img/idea/2017.2/fileTypesRST.png icon, and feature syntax highlighting.

Refer to the section Testing for the detailed description of the common testing procedures.

Last modified: 26 October 2017

See Also