pytest plugin for a better developer experience when working with the PyTorch test suite
Project description
pytest-pytorch
What is it?
pytest-pytorch
is a lightweight pytest
-plugin that enhances the developer experience when working with the PyTorch test suite if you come from a pytest
background.
Why do I need it?
Some testcases in the PyTorch test suite are automatically generated when a module is loaded in order to parametrize them. Trying to collect them with their names as written, e.g. pytest test_foo.py::TestFoo
or pytest test_foo.py::TestFoo::test_bar
, is unfortunately not possible. If you are used to this syntax or your IDE relies on it (PyCharm, VSCode), you can install pytest-pytorch
to make it work.
How do I install it?
You can install pytest-pytorch
with pip
$ pip install pytest-pytorch
or with conda
:
$ conda install -c conda-forge pytest-pytorch
How do I use it?
With pytest-pytorch
installed you can select test cases and tests as if the instantiation for different devices was performed by @pytest.mark.parametrize
:
Use case | Command |
---|---|
Run a test case against all devices | pytest test_foo.py::TestBar |
Run a test case against one device | pytest test_foo.py::TestBar -k "$DEVICE" |
Run a test against all devices | pytest test_foo.py::TestBar::test_baz |
Run a test against one device | pytest test_foo.py::TestBar::test_baz -k "$DEVICE" |
Can I have a little more background?
PyTorch uses its own method for generating tests that is for the most part compatible with unittest
and pytest. Its custom test generation allows test templates to be written and instantiated for different device types, data types, and operators. Consider the following module test_foo.py
:
from torch.testing._internal.common_utils import TestCase
from torch.testing._internal.common_device_type import instantiate_device_type_tests
class TestFoo(TestCase):
def test_bar(self, device):
pass
def test_baz(self, device):
pass
instantiate_device_type_tests(TestFoo, globals())
Assuming we "cpu"
and "cuda"
are available as devices, we can collect four tests:
test_foo.py::TestFooCPU::test_bar_cpu
,test_foo.py::TestFooCPU::test_baz_cpu
,test_foo.py::TestFooCUDA::test_bar_cuda
, andtest_foo.py::TestFooCUDA::test_baz_cuda
.
From a pytest
perspective this is similar to decorating TestFoo
with @pytest.mark.parametrize("device", ("cpu", "cuda")))
which would result in
test_foo.py::TestFoo:test_bar[cpu]
,test_foo.py::TestFoo:test_bar[cuda]
,test_foo.py::TestFoo:test_baz[cpu]
, andtest_foo.py::TestFoo:test_baz[cuda]
.
Since the PyTorch test framework renames testcases and tests, naively running pytest test_foo.py::TestFoo
or pytest test_foo.py::TestFoo::test_bar
fails, because it can't find anything matching these names. Of course you can get around it by using the regular expression matching (-k
command line flag) that pytest
offers.
pytest-pytorch
performs this matching so you can keep your familiar workflow and your IDE is happy out of the box.
How do I contribute?
First and foremost: Thank you for your interest in development of pytest-pytorch
's! We appreciate all contributions be it code or something else. Check out our contribution guide lines for details.
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
Built Distribution
File details
Details for the file pytest_pytorch-0.2.1.tar.gz
.
File metadata
- Download URL: pytest_pytorch-0.2.1.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.6.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf0d4d7a5e618dba1a8503aa626a9711606b0f4733c0df1170fdaac9b3b25724 |
|
MD5 | 0a0cac7760a961295867bbaa634cb4b2 |
|
BLAKE2b-256 | fd773de74fcf2ef2be75fbfca13b23a51c81f305e235c5b460599e460ec2547f |
File details
Details for the file pytest_pytorch-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: pytest_pytorch-0.2.1-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.6.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c9f154b0640fca5ed14c33f16df1b4d95c57e8f44e9a2559596ec77a213ab58 |
|
MD5 | 3529836fbf123061ec906e62309821ba |
|
BLAKE2b-256 | f41ed0c59aec5ed549a54caa0b8b467aea4b8ee9c37b2bdda6837543adc0887f |