An easy way to debug your code.
Project description
The purpose of Know It’s Ok is to make it as easy as possible to run your tests while you’re debugging your code. In particular, it’s main features are:
It finds your tests from anywhere in your repository.
It runs your tests with arguments tailored towards debugging.
It only requires typing two letters: ok
Installation
Know It’s Ok is available from PyPI:
$ pip install know_its_ok
It’s only dependencies are pytest and pytest-cov, which should both be installed automatically.
Usage
You can run Know It’s Ok from anywhere in your package’s repository:
$ ok
You can also specify individual tests to run (by default they will all be run). You don’t need to specify the complete name of a test, any substring of a test will be understood. For example, if you have a test called test_foo.py, you can use this command to run it:
$ ok foo
You can also specify arguments that should be passed through to pytest (this won’t work if the argument to pytest also matches the name of one of your tests, but in practice this is never a problem):
$ ok --pdb
In order to discover your tests simply, Know It’s Ok is very opinionated about the organization of your code. In particular:
Your code must be version controlled using git.
Your tests must be stored in a directory called tests/, which itself must be located in the top level of your repository.
Inside the tests/ directory, your tests must match the pattern: ??_test_*.py.
Your tests must be written using the pytest framework.
Your package must be located in a directory containing and __init__.py file.
If any of these expectations are not met, the code should raise an exception.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file know_its_ok-0.5.0.tar.gz
.
File metadata
- Download URL: know_its_ok-0.5.0.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ab2ee078f61c93a8281458ba9b56cde0de03ea299201f0982f362e8045278cc |
|
MD5 | d93fb05fd1108bb913e1f9177fb61cfb |
|
BLAKE2b-256 | 0779ac1741c35e26432a589b49147b7778b37942e07201477289411eed4f4603 |