/run-repo-tests

Run all tests in the repository. Use it along with `pre-commit` as part of a pre-commit Git hook.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Hook to run tests during pre-commit

This is a hook to run all tests in your repository, (Currently, it supports only Python tests.)

Use it with pre-commit by putting this in .pre-commit-config.yaml:

-   repo: git://github.com/pradeep90/run-repo-tests
    sha: v0.1
    hooks:
    -   id: run-python-tests

Currently runs only Python tests (in _test.py files that have a main function).