From 4fba20e544ae807b714078d2911813e8946f03b6 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Sat, 17 Oct 2015 18:14:52 +0200 Subject: [PATCH] Add link to unittest2pytest Closes #991. --- doc/en/unittest.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/en/unittest.rst b/doc/en/unittest.rst index 8c2bf83ea..661652656 100644 --- a/doc/en/unittest.rst +++ b/doc/en/unittest.rst @@ -180,3 +180,11 @@ was executed ahead of the ``test_method``. to selectively leave away the ``unittest.TestCase`` subclassing, use plain asserts and get the unlimited pytest feature set. + +Converting from unittest to pytest +--------------------------------------- + +If you want to convert your unittest testcases to pytest, there are +some helpers like `unittest2pytest +`__, which uses lib2to3 +and introspection for the transformation.