# ndjson-testrunner **Repository Path**: dyc1go/ndjson-testrunner ## Basic Information - **Project Name**: ndjson-testrunner - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-09 - **Last Updated**: 2022-09-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ndjson TestRunner |pypi-badge| |travis-badge| ============================================= A unittest_ ``TestRunner`` that outputs ndjson_. One JSON record per test result: .. code-block:: javascript { "type": "success" | "expected_failure" | "failure" | "error" | "unexpected_success" | "skip", "id": "module.TestClass.test_function", "desc": null | "First line of test function docstring", "msg": null | "Exception traceback or reason for skipping" } To be used for test result storage or interprocess communication. .. _unittest: https://docs.python.org/3/library/unittest.html .. _ndjson: http://ndjson.org .. |pypi-badge| image:: https://img.shields.io/pypi/v/ndjson-testrunner.svg?style=flat-square :target: https://pypi.python.org/pypi/ndjson-testrunner .. |travis-badge| image:: https://img.shields.io/travis/flying-sheep/ndjson-testrunner.svg?style=flat-square :target: https://travis-ci.com/flying-sheep/ndjson-testrunner