Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/subagents/test-runner.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ tox -e lint # Type checking and linting
- `test/` - Unit tests mirroring source structure
- `test/conftest.py` - Pytest configuration
- `test/charms/` - Test charm implementations
- `testing/src/scenario/` - Testing framework source
- `testing/src/ops_scenario/` - Testing framework source
- `tox.ini` - Test environment configuration
41 changes: 18 additions & 23 deletions testing/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,44 +1,39 @@
[build-system]
requires = [
"setuptools >= 35.0.2",
]
build-backend = "setuptools.build_meta"

[project]
name = "ops-scenario"

version = "8.6.0.dev0"

description = "Python library providing a state-transition testing API for Operator Framework charms."
requires-python = ">=3.10"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Pietro Pasotti", email = "pietro.pasotti@canonical.com" }
]
maintainers = [
{ name = "The Charm Tech team at Canonical Ltd." }
]
description = "Python library providing a state-transition testing API for Operator Framework charms."
license = "Apache-2.0"
keywords = ["juju", "test"]

dependencies = [
"ops==3.6.0.dev0",
"PyYAML>=6.0.1",
"typing_extensions>=4.9.0", # for `deprecated` decorator, replace with stdlib `warnings.deprecated` when we're Python 3.13+
]
readme = "README.md"
requires-python = ">=3.10"

classifiers = [
"Development Status :: 5 - Production/Stable",
'Framework :: Pytest',
'Intended Audience :: Developers',
"Programming Language :: Python",
"Programming Language :: Python :: 3",
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
]
dependencies = [
"ops==3.6.0.dev0",
"PyYAML>=6.0.1",
"typing_extensions>=4.9.0", # for `deprecated` decorator, replace with stdlib `warnings.deprecated` when we're Python 3.13+
]

[project.urls]
"Homepage" = "https://github.com/canonical/operator"
"Bug Tracker" = "https://github.com/canonical/operator/issues"
"Repository" = "https://github.com/canonical/operator"
"Issues" = "https://github.com/canonical/operator/issues"
"Documentation" = "https://documentation.ubuntu.com/ops/latest/"
"Changelog" = "https://github.com/canonical/operator/blob/main/CHANGES.md"

[bdist_wheel]
universal = 1
[build-system]
requires = ["uv_build"]
build-backend = "uv_build"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ envlist = lint, unit
src_path = ops/
tst_path = test/
all_path = {[vars]src_path} {[vars]tst_path}
testing_src_path = testing/src/scenario/
testing_src_path = testing/src/ops_scenario/
testing_tst_path = testing/tests/
tracing_tst_path = tracing/test/
examples_path = examples/
Expand Down