CueAdmin
CueAdmin is a command-line administration tool for OpenCue that provides full control over jobs, layers, frames, and hosts. It allows administrators to perform advanced management tasks such as setting priorities, killing jobs, or managing resource allocation. It's written in Python and provides a thin layer over the OpenCue Python API.
Table of Contents
Installation
Install CueAdmin with:
pip install opencue-cueadmin
For development:
# Clone repository and install with test dependencies
git clone https://github.com/AcademySoftwareFoundation/OpenCue.git
cd OpenCue/cueadmin
pip install -e ".[dev]"
Usage
Basic CueAdmin commands:
# List jobs
cueadmin -lj
# List job details
cueadmin -lji
# List hosts
cueadmin -lh
# Job management
cueadmin -pause JOB_NAME # Pause a job
cueadmin -unpause JOB_NAME # Resume a job
cueadmin -kill JOB_NAME # Kill a job (with confirmation)
cueadmin -retry JOB_NAME # Retry dead frames
cueadmin -priority JOB_NAME 100 # Set job priority
cueadmin -set-min-cores JOB_NAME 4.0 # Set minimum cores
cueadmin -set-max-cores JOB_NAME 16.0 # Set maximum cores
cueadmin -drop-depends JOB_NAME # Drop job dependencies
For full documentation, see the OpenCue Documentation.
Running Tests
CueAdmin includes a comprehensive test suite with tests covering job management, allocation management, host operations, output formatting, and core functionality.
Quick Start
# Install with test dependencies
pip install -e ".[test]"
# Run all tests
pytest
# Run with coverage
pytest --cov=cueadmin --cov-report=term-missing
Test Infrastructure
Test Dependencies:
pytest>=8.0.0- Modern test frameworkpytest-cov>=4.0.0- Coverage reportingpytest-mock>=3.10.0- Enhanced mockingmock>=4.0.0- Core mocking librarypyfakefs>=5.2.3- Filesystem mocking
Test Types:
- Unit tests - Function-level testing (
tests/test_*.py) - Integration tests - Command workflow testing (
tests/integration_tests.py) - Job commands tests - Job management operations (
tests/test_job_commands.py) - Allocation tests - Allocation management functionality (
tests/test_allocation_commands.py) - Host commands tests - Host operations (
tests/test_host_command.py) - Subscription tests - Subscription management (
tests/test_subscription_commands.py)
Running Tests
# Basic test run
pytest tests/
# Verbose output
pytest -v
# Run specific test file
pytest tests/test_allocation_commands.py
# Run with coverage and HTML report
pytest --cov=cueadmin --cov-report=html --cov-report=term-missing
# Use the convenience script
./run_tests.sh --coverage --html
Coverage Reporting
# Terminal coverage report
pytest --cov=cueadmin --cov-report=term-missing
# HTML coverage report (generates htmlcov/ directory)
pytest --cov=cueadmin --cov-report=html
# XML coverage for CI/CD
pytest --cov=cueadmin --cov-report=xml
Development Testing
For contributors:
# Install development dependencies
pip install -e ".[dev]"
# Run all tests with linting
pytest && pylint cueadmin tests
# Run tests across Python versions (requires tox)
tox
# Format code
black cueadmin tests
isort cueadmin tests
CI/CD Integration:
# In OpenCue root directory
./ci/run_python_tests.sh # Includes cueadmin tests
./ci/run_python_lint.sh # Includes cueadmin linting
# Run cueadmin tests specifically
cd cueadmin && python -m pytest tests/
Test Configuration
Tests are configured via pyproject.toml:
- pytest.ini_options - Test discovery and execution
- coverage settings - Coverage reporting configuration
- markers - Test categorization (unit, integration, slow)
Continuous Integration
The test suite is integrated into:
- GitHub Actions - Automated testing on PRs
- Docker builds - Container-based testing
- Lint pipeline - Code quality checks
Contributing
We welcome contributions to CueAdmin! The project includes comprehensive development infrastructure:
Development Setup
# Clone and setup
git clone https://github.com/AcademySoftwareFoundation/OpenCue.git
cd OpenCue/cueadmin
# Install with development dependencies
pip install -e ".[dev]"
Testing and Quality
# Run comprehensive test suite
pytest --cov=cueadmin --cov-report=term-missing
# Code formatting and linting
black cueadmin tests && isort cueadmin tests
pylint cueadmin tests
# Multi-environment testing
tox
Project Quality
- Comprehensive test coverage with unit and integration tests
- Modern testing infrastructure using pytest, coverage, and CI/CD
- Code quality tools including pylint, black, and isort
- Multi-Python version support via tox
- Docker support for containerized development
For detailed contribution guidelines, see CONTRIBUTING.md.
Get Involved
- Report Issues: GitHub Issues
- Contribute Code: Submit pull requests with tests and documentation
- Improve Documentation: Help enhance tutorials and reference docs
- Share Use Cases: Contribute real-world examples and workflows
Release files for opencue-cueadmin 1.19.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| opencue_cueadmin-1.19.1.tar.gz | 56.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| opencue_cueadmin-1.19.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 76.3 kB
Release files / opencue_cueadmin-1.19.1.tar.gz
| Download URL | opencue_cueadmin-1.19.1.tar.gz |
|---|---|
| Size | 56.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
990685379e37be2ee50174df1088c263fe2a56a77b73b48232918ec579c5ff1c
|
|
BLAKE2b-256 checksum How to use checksums |
f70a814ae0d66ac221abc459a573bc5bece45378b064f29115ce6a165513db83
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.11.15
|
Release files / opencue_cueadmin-1.19.1-py3-none-any.whl
| Download URL | opencue_cueadmin-1.19.1-py3-none-any.whl |
|---|---|
| Size | 20.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
1d28e313130dd45d6737f63616a5b203f05b889983eb391df975bc32160e9fc9
|
|
BLAKE2b-256 checksum How to use checksums |
b1e827aa311d9aa5eff565a0b5803dc80eb45d9b44dfcb82c44ce4351b7c9556
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.11.15
|