GitHunt
CO

codewars/python-test-framework

Codewars test framework for Python

Codewars Test Framework for Python

Installation

pip install git+https://github.com/codewars/python-test-framework.git#egg=codewars_test

Basic Example

import codewars_test as test
from solution import add

@test.describe('Example Tests')
def example_tests():

    @test.it('Example Test Case')
    def example_test_case():
        test.assert_equals(add(1, 1), 2, 'Optional Message on Failure')

Languages

Python96.0%Shell4.0%

Contributors

MIT License
Created February 15, 2019
Updated January 8, 2026