plugin for rich text descriptions
Project description
pytest-describe-it
Example
Some simple test:
import pytest
def add(x: int, y: int) -> int:
return x + y
@pytest.mark.describe('add')
class TestAdd:
@pytest.mark.parametrize(['x', 'y', 'expected'], [
(1, 2, 3),
(3, 4, 7),
(5, 6, 10),
])
@pytest.mark.it('returns {expected} for add({x}, {y})')
def test_add(self, x, y, expected):
assert add(x, y) == expected
Pytest output:
collected 3 items
test_add.py ..F [100%]
====================================== FAILURES =======================================
________________ TestAdd.test_add[[ add — returns 10 for add(5, 6) ]] _________________
self = <test_add.TestAdd object at 0x10b740b70>, x = 5, y = 6, expected = 10
@pytest.mark.parametrize(['x', 'y', 'expected'], [
(1, 2, 3),
(3, 4, 7),
(5, 6, 10),
])
@pytest.mark.it('returns {expected} for add({x}, {y})')
def test_add(self, x, y, expected):
> assert add(x, y) == expected
E assert 11 == 10
E + where 11 = add(5, 6)
test_add.py:18: AssertionError
========================= 1 failed, 2 passed in 0.05 seconds ==========================
With pytest-sugar:
collecting ...
test_add.py ✓✓ 67% ██████▋
―――――――――――――――― TestAdd.test_add[[ add — returns 10 for add(5, 6) ]] ―――――――――――――――――
self = <test_add.TestAdd object at 0x10e4e3550>, x = 5, y = 6, expected = 10
@pytest.mark.parametrize(['x', 'y', 'expected'], [
(1, 2, 3),
(3, 4, 7),
(5, 6, 10),
])
@pytest.mark.it('returns {expected} for add({x}, {y})')
def test_add(self, x, y, expected):
> assert add(x, y) == expected
E assert 11 == 10
E + where 11 = add(5, 6)
test_add.py:18: AssertionError
test_add.py ⨯ 100% ██████████
Results (0.10s):
2 passed
1 failed
- test_add.py:11 TestAdd.test_add[[ add — returns 10 for add(5, 6) ]]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest-describe-it-0.1.0.tar.gz.
File metadata
- Download URL: pytest-describe-it-0.1.0.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58789035ea73dce10253630c33de9b3afa2e3af320239bab137f2b7c9cb90a37
|
|
| MD5 |
1e8634d2b93fa253b78d4967ec157fcf
|
|
| BLAKE2b-256 |
3ed33568eb89155be2917d504cba84d2d7c68e691a9b525b15d8263d9f4f6273
|
File details
Details for the file pytest_describe_it-0.1.0-py2.py3-none-any.whl.
File metadata
- Download URL: pytest_describe_it-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
102b14cdeea668eff089d706e03698b518d53174d2e1aed3c55c0e70a7ed7cf3
|
|
| MD5 |
a51791f7fc8f87a26e7edd1c0f9340a8
|
|
| BLAKE2b-256 |
e243a09d78e6eb9a1d469b7bcd40ca4cbecb9d1188ee7e66ca3edfb649a722bd
|