No project description provided
Project description
pytest_apiver
Pytest plugin helping to test packages implementing ApiVer.
Usage
Assuming your package exposes v1
, v2
, ... ApiVer interfaces, i.e. has structure like this:
my_package/
__init__.py
v1/
__init__.py
...
_v3/
__init__.py
You can configure to run apiver-aware tests against it using pyproject.toml
:
[tool.pytest.ini_options]
target_package_name = "my_package"
Then you can write tests like this:
@pytest.mark.apiver(from_ver=2, to_ver=3)
def test_run_for_apiver_ver_2_3(apiver_module):
assert apiver_module.func()
Which will run test against my_package.v2.func()
and my_package.v3.func()
respectively.
For non-flat package structure, you can use auto-magical getter doing imports of submodules built into apiver_module
fixture, e.g.:
@pytest.mark.apiver(from_ver=2, to_ver=2)
def test_func__v2(apiver_module):
assert apiver_module.utils.func() # equivalent to my_package.v2.utils.func()
Versioning
This package uses Semantic Versioning.
TL;DR you are safe to use compatible release version specifier ~=MAJOR.MINOR
in your pyproject.toml
or requirements.txt
.
Internal packages, i.e. prefixed by pytest_apiver._
do not share these guarantees and may change in a backwards-incompatible way at any time even in patch releases.
Development
Pre-requisites:
Ideally, you should run nox -t format lint
before every commit to ensure that the code is properly formatted and linted.
Before submitting a PR, make sure that tests pass as well, you can do so using:
nox -t check # equivalent to `nox -t format lint test`
If you wish to install dependencies into .venv
so your IDE can pick them up, you can do so using:
pdm install --dev
Release process
Run nox -s make_release -- X.Y.Z
where X.Y.Z
is the version you're releasing and follow the printed instructions.
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
File details
Details for the file pytest_apiver-0.1.0.tar.gz
.
File metadata
- Download URL: pytest_apiver-0.1.0.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 105023e626a3e3e59c59efb3f4268245b09ddfb3d8e627f67e4f411d77642e67 |
|
MD5 | c3a90ec1f7e1b46dbc7a21ffe79768e4 |
|
BLAKE2b-256 | 8f712205f73d5849b3941e2018e5ff4a090776a3aad82eb4eb18cf62cfbe48f0 |
File details
Details for the file pytest_apiver-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: pytest_apiver-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc86ec3de77506a26aa232858f94c5bf397b1a0798ba7c0772061017119f3420 |
|
MD5 | 38c40af29c3b2487d93ffea0b5a33208 |
|
BLAKE2b-256 | 85486df9924919148dd6a10a67a5e253041c705c481c669c9c3ce6f40d262a3c |