Juju CLI wrapper, primarily for charm integration testing
Project description
Jubilant, the joyful library for driving Juju
Jubilant is a Python library that wraps the Juju CLI, primarily for use in charm integration tests. It provides methods that map 1:1 to Juju CLI commands, but with a type-annotated, Pythonic interface.
You should consider switching to Jubilant if your integration tests currently use pytest-operator (and they probably do). Jubilant has an API you'll pick up quickly, and it avoids some of the pain points of python-libjuju, such as websocket failures and having to use async. Read our design goals.
Jubilant 1.0.0 was released in April 2025. We'll avoid making breaking changes to the API after this point.
Using Jubilant
Jubilant is published to PyPI, so you can install and use it with your favorite Python package manager:
$ pip install jubilant
# or
$ uv add jubilant
Because Jubilant calls the Juju CLI, you'll also need to install Juju.
To use Jubilant in Python code:
import jubilant
juju = jubilant.Juju()
juju.deploy('snappass-test')
juju.wait(jubilant.all_active)
# Or only wait for specific applications:
juju.wait(lambda status: jubilant.all_active(status, 'snappass-test', 'another-app'))
Below is an example of a charm integration test. First we define a module-scoped pytest fixture named juju which creates a temporary model and runs the test with a Juju instance pointing at that model. Jubilant'stemp_model context manager creates the model during test setup and destroys it during teardown:
# conftest.py
@pytest.fixture(scope='module')
def juju():
with jubilant.temp_model() as juju:
yield juju
# test_deploy.py
def test_deploy(juju: jubilant.Juju): # Use the "juju" fixture
juju.deploy('snappass-test') # Deploy the charm
status = juju.wait(jubilant.all_active) # Wait till the app and unit are 'active'
# Hit the Snappass HTTP endpoint to ensure it's up and running.
address = status.apps['snappass-test'].units['snappass-test/0'].address
response = requests.get(f'http://{address}:5000/', timeout=10)
response.raise_for_status()
assert 'snappass' in response.text.lower()
You don't have to use pytest with Jubilant, but it's what we recommend. Pytest's assert-based approach is a straight-forward way to write tests, and its fixtures are helpful for structuring setup and teardown.
Contributing and developing
Anyone can contribute to Jubilant. It's best to start by opening an issue with a clear description of the problem or feature request, but you can also open a pull request directly.
Jubilant uses uv to manage Python dependencies and tools, so you'll need to install uv to work on the library. You'll also need make to run local development tasks (but you probably have make installed already).
After that, clone the Jubilant codebase and use make all to run various checks and the unit tests:
$ git clone https://github.com/canonical/jubilant
Cloning into 'jubilant'...
...
$ cd jubilant
$ make all
...
========== 107 passed in 0.26s ==========
To contribute a code change, write your fix or feature, add tests and docs, then run make all before you push and create a PR. Once you create a PR, GitHub will also run the integration tests, which takes several minutes.
Doing a release
To create a new release of Jubilant:
- Update the
__version__field injubilant/__init__.pyto the new version you want to release. - Push up a PR with this change and get it reviewed and merged.
- Create a new release on GitHub with good release notes. The tag should start with a
v, likev1.2.3. Once you've created the release, thepublish.yamlworkflow will automatically publish it to PyPI. - Once the publish workflow has finished, check that the new version appears in the PyPI version history.
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 jubilant-1.6.2.tar.gz.
File metadata
- Download URL: jubilant-1.6.2.tar.gz
- Upload date:
- Size: 32.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d841610fd86f7d77419da8be08e6c936412e581652f55faa23c6c19536b87a8f
|
|
| MD5 |
d1a454ff947320830dde9f3cb07a6a8f
|
|
| BLAKE2b-256 |
8c7f4b1a751930713ee585ea0a4dcf4af30d19f4af478cf7658376ca788adbf3
|
Provenance
The following attestation bundles were made for jubilant-1.6.2.tar.gz:
Publisher:
publish.yaml on canonical/jubilant
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jubilant-1.6.2.tar.gz -
Subject digest:
d841610fd86f7d77419da8be08e6c936412e581652f55faa23c6c19536b87a8f - Sigstore transparency entry: 769195676
- Sigstore integration time:
-
Permalink:
canonical/jubilant@984248d18fbd23fcf86fedccaade0c785fd24007 -
Branch / Tag:
refs/tags/v1.6.2 - Owner: https://github.com/canonical
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@984248d18fbd23fcf86fedccaade0c785fd24007 -
Trigger Event:
push
-
Statement type:
File details
Details for the file jubilant-1.6.2-py3-none-any.whl.
File metadata
- Download URL: jubilant-1.6.2-py3-none-any.whl
- Upload date:
- Size: 33.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa81995b64e0519fa59407beabbbc2aae097437895addcb3df54f33ab207fbfb
|
|
| MD5 |
88e296979cde4c85db49fb33ed172620
|
|
| BLAKE2b-256 |
781322f29f41fc6e2467f039a2d38179f59c069245090524ebc3d8aaf64d3d4b
|
Provenance
The following attestation bundles were made for jubilant-1.6.2-py3-none-any.whl:
Publisher:
publish.yaml on canonical/jubilant
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jubilant-1.6.2-py3-none-any.whl -
Subject digest:
fa81995b64e0519fa59407beabbbc2aae097437895addcb3df54f33ab207fbfb - Sigstore transparency entry: 769195704
- Sigstore integration time:
-
Permalink:
canonical/jubilant@984248d18fbd23fcf86fedccaade0c785fd24007 -
Branch / Tag:
refs/tags/v1.6.2 - Owner: https://github.com/canonical
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@984248d18fbd23fcf86fedccaade0c785fd24007 -
Trigger Event:
push
-
Statement type: