Skip to main content

A blazingly fast Language Server Protocol implementation for pytest

Project description

pytest-language-server ๐Ÿ”ฅ

CI Security Audit PyPI version Downloads Crates.io License: MIT Python Version

A blazingly fast Language Server Protocol (LSP) implementation for pytest, built with Rust, with full support for fixture discovery, go to definition, code completion, find references, hover documentation, diagnostics, and more!

pytest-language-server demo

Table of Contents

Features

Built with AI, maintained with care ๐Ÿค–

This project was built with the help of AI coding agents, but carefully reviewed to ensure correctness, reliability, security and performance. If you find any issues, please open an issue or submit a pull request!

๐ŸŽฏ Go to Definition

Jump directly to fixture definitions from anywhere they're used:

  • Local fixtures in the same file
  • Fixtures in conftest.py files
  • Third-party fixtures from pytest plugins (pytest-mock, pytest-asyncio, etc.)
  • Respects pytest's fixture shadowing/priority rules

๐Ÿ”ง Go to Implementation

Jump to the yield statement in generator fixtures:

  • Generator fixtures: Navigates to where yield produces the fixture value
  • Teardown navigation: Useful for reviewing fixture cleanup logic
  • Non-generator fallback: Falls back to definition for simple return-based fixtures

Example:

@pytest.fixture
def database():
    conn = connect()
    yield conn      # <-- Go to Implementation jumps here
    conn.close()    # Teardown code after yield

๐Ÿ”— Call Hierarchy

Explore fixture dependencies with Call Hierarchy support:

  • Incoming Calls: See which tests and fixtures depend on a fixture
  • Outgoing Calls: See which fixtures a fixture depends on
  • Works with your editor's "Show Call Hierarchy" command
  • Helps understand complex fixture dependency chains
@pytest.fixture
def database():        # <-- Call Hierarchy shows:
    ...                #     Incoming: test_query, test_insert (tests using this)
                       #     Outgoing: connection (fixtures this depends on)

โœจ Code Completion

Smart auto-completion for pytest fixtures:

  • Context-aware: Only triggers inside test functions and fixture functions
  • Hierarchy-respecting: Suggests fixtures based on pytest's priority rules (same file > conftest.py > third-party)
  • Rich information: Shows fixture source file and docstring
  • No duplicates: Automatically filters out shadowed fixtures
  • Works everywhere: Completions available in both function parameters and function bodies
  • Supports both sync and async functions

๐Ÿ” Find References

Find all usages of a fixture across your entire test suite:

  • Works from fixture definitions or usage sites
  • Character-position aware (distinguishes between fixture name and parameters)
  • Shows references in all test files
  • Correctly handles fixture overriding and hierarchies
  • LSP spec compliant: Always includes the current position in results

๐Ÿ“š Hover Documentation

View fixture information on hover:

  • Fixture signature
  • Source file location
  • Docstring (with proper formatting and dedenting)
  • Markdown support in docstrings

๐Ÿ“‘ Document Symbols

Navigate fixtures within a file using the document outline:

  • File outline view: See all fixtures defined in the current file (Cmd+Shift+O / Ctrl+Shift+O)
  • Breadcrumb navigation: Shows fixture hierarchy in editor breadcrumbs
  • Return type display: Shows fixture return types when available
  • Sorted by position: Fixtures appear in definition order

๐Ÿ”Ž Workspace Symbols

Search for fixtures across your entire workspace:

  • Global search: Find any fixture by name (Cmd+T / Ctrl+T)
  • Fuzzy matching: Case-insensitive substring search
  • File context: Shows which file each fixture is defined in
  • Fast lookup: Instant results from in-memory fixture database

๐Ÿ”ข Code Lens

See fixture usage counts directly in your editor:

  • Usage count: Shows "N usages" above each fixture definition
  • Click to navigate: Clicking the lens shows all references (find-references integration)
  • Real-time updates: Counts update as you add/remove fixture usages
  • Local fixtures only: Only shows lenses for project fixtures, not third-party

๐Ÿท๏ธ Inlay Hints

See fixture return types inline without leaving your code:

  • Type annotations: Shows return types next to fixture parameters (e.g., db: Database)
  • Explicit types only: Only displays hints when fixtures have explicit return type annotations
  • Generator support: Extracts yielded type from Generator[T, None, None] annotations
  • Non-intrusive: Hints appear as subtle inline decorations that don't modify your code

Example:

# With a fixture defined as:
@pytest.fixture
def database() -> Database:
    return Database()

# In your test, you'll see:
def test_example(database):  # Shows ": Database" after "database"
    pass

๐Ÿ’ก Code Actions

Intelligent code actions for pytest fixtures, covering quick fixes, type annotations, and bulk operations:

Quick Fix โ€” Add Missing Fixture Parameter (quickfix):

  • Triggered from undeclared-fixture diagnostics
  • Adds the fixture as a typed parameter (e.g., db: Database instead of just db) when the fixture has a return type annotation
  • Automatically inserts any import statements needed for the return type
  • Smart insertion handles both empty and existing parameter lists

Add Type Annotation (source.pytest-ls):

  • Cursor-based: place your cursor on an existing fixture parameter that lacks a type annotation
  • Inserts : ReturnType matching the inlay-hint text (e.g., database โ†’ database: Database)
  • Automatically adds any required import statements

Add All Fixture Type Annotations (source.fixAll.pytest-ls):

  • File-wide: annotates every unannotated fixture parameter in the file in a single action
  • Collects and deduplicates all required imports across all fixtures
  • Great for bringing an entire test file up to date in one click

isort/ruff-Aware Import Insertion (best-effort):

  • Attempts to place new imports into the correct isort group (stdlib vs third-party) with proper blank-line separators
  • When the file already has from X import Y for the same module, attempts to merge the new name into the existing line (sorted alphabetically) instead of adding a duplicate
  • Handles __future__ imports, comments between groups, and mixed import styles on a best-effort basis
  • Note: Placement follows common isort conventions but does not read your project's pyproject.toml or .isort.cfg. Run ruff check --fix or isort after applying these actions to bring imports into full conformance with your project's configuration

Example โ€” adding a type annotation:

# Before (cursor on "database"):
def test_example(database):
    pass

# After triggering "Add type annotation for fixture 'database'":
from myapp.db import Database  # โ† import added automatically

def test_example(database: Database):
    pass

โš ๏ธ Diagnostics & Quick Fixes

Detect and fix common pytest fixture issues with intelligent code actions:

Fixture Scope Validation:

  • Detects when a broader-scoped fixture depends on a narrower-scoped fixture
  • Example: A session-scoped fixture cannot depend on a function-scoped fixture
  • Warnings show both the fixture's scope and its dependency's scope
  • Prevents hard-to-debug test failures from scope violations

Circular Dependency Detection:

  • Detects when fixtures form circular dependency chains (A โ†’ B โ†’ C โ†’ A)
  • Reports the full cycle path for easy debugging
  • Works across files (conftest.py hierarchies)

Scope mismatch example:

# โš ๏ธ Scope mismatch! session-scoped fixture depends on function-scoped
@pytest.fixture(scope="session")
def shared_db(temp_dir):  # temp_dir is function-scoped
    return Database(temp_dir)

@pytest.fixture  # Default is function scope
def temp_dir(tmp_path):
    return tmp_path / "test"

Undeclared Fixture Detection:

  • Detects when fixtures are used in function bodies but not declared as parameters
  • Line-aware scoping: Correctly handles local variables assigned later in the function
  • Hierarchy-aware: Only reports fixtures that are actually available in the current file's scope
  • Works in tests and fixtures: Detects undeclared usage in both test functions and fixture functions
  • Excludes built-in names (self, request) and actual local variables

One-Click Quick Fixes:

  • Code actions to automatically add missing fixture parameters with type annotations
  • Intelligent parameter insertion (handles both empty and existing parameter lists)
  • Works with both single-line and multi-line function signatures
  • Automatically adds required import statements for return types
  • Triggered directly from diagnostic warnings

Example:

@pytest.fixture
def user_db() -> Database:
    return Database()

def test_user(user_db):  # โœ… user_db properly declared
    user = user_db.get_user(1)
    assert user.name == "Alice"

def test_broken():  # โš ๏ธ Warning: 'user_db' used but not declared
    user = user_db.get_user(1)  # ๐Ÿ’ก Quick fix: Add 'user_db: Database' parameter + import
    assert user.name == "Alice"

How to use code actions:

  1. Quick fix (undeclared fixture): Place cursor on the warning squiggle โ†’ trigger code actions (Cmd+. / Ctrl+.) โ†’ select "pytest-ls: Add 'fixture_name' fixture parameter (Type)"
  2. Add type annotation (single fixture): Place cursor on an unannotated fixture parameter โ†’ trigger code actions โ†’ select "pytest-ls: Add type annotation for fixture 'name'"
  3. Add all type annotations (file-wide): Trigger code actions anywhere in the file โ†’ select "pytest-ls: Add all fixture type annotations (N fixtures)"

โšก๏ธ Performance

Built with Rust for maximum performance:

  • Fast workspace scanning with concurrent file processing
  • Efficient AST parsing using rustpython-parser
  • Lock-free data structures with DashMap
  • Minimal memory footprint

Installation

Choose your preferred installation method:

๐Ÿ“ฆ PyPI (Recommended)

The easiest way to install for Python projects:

# Using uv (recommended)
uv tool install pytest-language-server

# Or with pip
pip install pytest-language-server

# Or with pipx (isolated environment)
pipx install pytest-language-server

๐Ÿบ Homebrew (macOS/Linux)

Install via Homebrew for system-wide availability:

brew install bellini666/tap/pytest-language-server

To add the tap first:

brew tap bellini666/tap https://github.com/bellini666/pytest-language-server
brew install pytest-language-server

๐Ÿฆ€ Cargo (Rust)

Install from crates.io if you have Rust installed:

cargo install pytest-language-server

๐Ÿ“ฅ Pre-built Binaries

Download pre-built binaries from the GitHub Releases page.

Available for:

  • Linux: x86_64, aarch64, armv7 (glibc and musl)
  • macOS: Intel and Apple Silicon
  • Windows: x64 and x86

๐Ÿ”จ From Source

Build from source for development or customization:

git clone https://github.com/bellini666/pytest-language-server
cd pytest-language-server
cargo build --release

The binary will be at target/release/pytest-language-server.

Setup

Neovim

Add this to your config:

vim.lsp.config('pytest_lsp', {
  cmd = { 'pytest-language-server' },
  filetypes = { 'python' },
  root_markers = { 'pyproject.toml', 'setup.py', 'setup.cfg', 'pytest.ini', '.git' },
})

vim.lsp.enable('pytest_lsp')

Zed

Install from the Zed Extensions Marketplace:

  1. Open Zed
  2. Open the command palette (Cmd+Shift+P / Ctrl+Shift+P)
  3. Search for "zed: extensions"
  4. Search for "pytest Language Server"
  5. Click "Install"

The extension downloads platform-specific binaries from GitHub Releases. If you prefer to use your own installation (via pip, cargo, or brew), place pytest-language-server in your PATH.

After installing the extension, you need to enable the language server for Python files. Add the following to your Zed settings.json:

{
  "languages": {
    "Python": {
      "language_servers": ["pyright", "pytest-language-server", "..."]
    }
  }
}

VS Code

The extension includes pre-built binaries - no separate installation required!

Install from the Visual Studio Marketplace or the Open VSX Registry (for VSCodium, Cursor, Windsurf, etc.):

  1. Open VS Code
  2. Go to Extensions (Cmd+Shift+X / Ctrl+Shift+X)
  3. Search for "pytest Language Server"
  4. Click "Install"

Works out of the box with zero configuration!

IntelliJ IDEA / PyCharm

The plugin includes pre-built binaries - no separate installation required!

Install from the JetBrains Marketplace:

  1. Open PyCharm or IntelliJ IDEA
  2. Go to Settings/Preferences โ†’ Plugins
  3. Search for "pytest Language Server"
  4. Click "Install"

Requires PyCharm 2024.2+ or IntelliJ IDEA 2024.2+ with Python plugin.

Emacs

Add this to your config:

(use-package eglot
  :config
  (add-to-list 'eglot-server-programs
               '((python-mode python-ts-mode) . ("pytest-language-server"))))

Other Editors

Any editor with LSP support can use pytest-language-server. Configure it to run the pytest-language-server command.

Configuration

pyproject.toml

Configure pytest-language-server via your project's pyproject.toml:

[tool.pytest-language-server]
# Glob patterns for files/directories to exclude from scanning
exclude = ["build/**", "dist/**", ".tox/**"]

# Disable specific diagnostics
# Valid codes: "undeclared-fixture", "scope-mismatch", "circular-dependency"
disabled_diagnostics = ["undeclared-fixture"]

# Additional directories to scan for fixtures (planned feature)
fixture_paths = ["fixtures/", "shared/fixtures/"]

# Third-party plugins to skip when scanning venv (planned feature)
skip_plugins = ["pytest-xdist"]

Available Options:

Option Type Description
exclude string[] Glob patterns for paths to exclude from workspace scanning
disabled_diagnostics string[] Diagnostic codes to suppress
fixture_paths string[] Additional fixture directories (planned)
skip_plugins string[] Third-party plugins to skip (planned)

Diagnostic Codes:

  • undeclared-fixture - Fixture used in function body but not declared as parameter
  • scope-mismatch - Broader-scoped fixture depends on narrower-scoped fixture
  • circular-dependency - Circular fixture dependency detected

Logging

Control log verbosity with the RUST_LOG environment variable:

# Minimal logging (default)
RUST_LOG=warn pytest-language-server

# Info level
RUST_LOG=info pytest-language-server

# Debug level (verbose)
RUST_LOG=debug pytest-language-server

# Trace level (very verbose)
RUST_LOG=trace pytest-language-server

Logs are written to stderr, so they won't interfere with LSP communication.

Virtual Environment Detection

The server automatically detects your Python virtual environment:

  1. Checks for .venv/, venv/, or env/ in your project root
  2. Falls back to $VIRTUAL_ENV environment variable
  3. Scans third-party pytest plugins for fixtures

Code Actions

Code actions are available in three forms:

Kind Trigger What it does
quickfix Diagnostic warning Adds missing fixture parameter (with type + import)
source.pytest-ls Cursor on unannotated param Adds : ReturnType + import for one fixture
source.fixAll.pytest-ls Anywhere in file Adds all missing type annotations + imports

Import ordering is best-effort. Generated imports attempt to follow common isort conventions (stdlib before third-party, alphabetical within groups, merging into existing from X import lines) but the server does not read your project's pyproject.toml or .isort.cfg. After applying code actions, run ruff check --fix or isort to bring imports into full conformance with your project's configuration.

Return-type resolution precedence โ€” when a fixture has a return type annotation (e.g. -> Path), the server resolves the import needed for that type using the following priority:

  1. Builtin types (int, str, bool, dict, list, None, โ€ฆ) โ€” skipped, no import needed
  2. Import map lookup โ€” if the fixture file imports the name (e.g. from pathlib import Path), the same import statement is reused (relative imports are resolved to absolute form)
  3. Locally defined names โ€” if the name is defined in the fixture file itself (e.g. a class in conftest.py) but not imported from elsewhere, an import is generated from the file's module path (e.g. from tests.conftest import MyClass)
  4. Unknown names โ€” skipped; no import is generated

Note: Module path resolution for locally defined names depends on __init__.py files on disk. The server automatically watches for __init__.py create/delete events and re-analyzes affected fixture files, so module paths stay up to date without manual intervention.

If code actions don't appear in your editor:

  1. Check LSP capabilities: Ensure your editor supports code actions (most modern editors do)
  2. Check code action kinds: Some editors filter by kind โ€” ensure source.* actions are enabled alongside quickfix
  3. Enable debug logging: Use RUST_LOG=info to see if actions are being created
  4. Verify diagnostics: Quick-fix actions only appear where there are undeclared-fixture warnings
  5. Verify fixtures have return types: Type annotation actions only appear for fixtures with explicit return type annotations
  6. Trigger manually: Use your editor's code action keybinding (Cmd+. / Ctrl+.)

CLI Commands

In addition to the LSP server mode, pytest-language-server provides useful command-line tools:

Fixtures List

View all fixtures in your test suite with a hierarchical tree view:

# List all fixtures
pytest-language-server fixtures list tests/

# Skip unused fixtures
pytest-language-server fixtures list tests/ --skip-unused

# Show only unused fixtures
pytest-language-server fixtures list tests/ --only-unused

The output includes:

  • Color-coded display: Files in cyan, directories in blue, used fixtures in green, unused in gray
  • Usage statistics: Shows how many times each fixture is used
  • Smart filtering: Hides files and directories with no matching fixtures
  • Hierarchical structure: Visualizes fixture organization across conftest.py files

Example output:

Fixtures tree for: /path/to/tests

conftest.py (7 fixtures)
โ”œโ”€โ”€ another_fixture (used 2 times)
โ”œโ”€โ”€ cli_runner (used 7 times)
โ”œโ”€โ”€ database (used 6 times)
โ”œโ”€โ”€ generator_fixture (used 1 time)
โ”œโ”€โ”€ iterator_fixture (unused)
โ”œโ”€โ”€ sample_fixture (used 7 times)
โ””โ”€โ”€ shared_resource (used 5 times)
subdir/
โ””โ”€โ”€ conftest.py (4 fixtures)
    โ”œโ”€โ”€ cli_runner (used 7 times)
    โ”œโ”€โ”€ database (used 6 times)
    โ”œโ”€โ”€ local_fixture (used 4 times)
    โ””โ”€โ”€ sample_fixture (used 7 times)

This command is useful for:

  • Auditing fixture usage across your test suite
  • Finding unused fixtures that can be removed
  • Understanding fixture organization and hierarchy
  • Documentation - visualizing available fixtures for developers

Fixtures Unused

Find unused fixtures in your test suite, with CI-friendly exit codes:

# List unused fixtures (text format)
pytest-language-server fixtures unused tests/

# JSON output for programmatic use
pytest-language-server fixtures unused tests/ --format json

Exit codes:

  • 0: All fixtures are used
  • 1: Unused fixtures found

Example text output:

Found 4 unused fixture(s):

  โ€ข iterator_fixture in conftest.py
  โ€ข auto_cleanup in utils/conftest.py
  โ€ข temp_dir in utils/conftest.py
  โ€ข temp_file in utils/conftest.py

Tip: Remove unused fixtures or add tests that use them.

Example JSON output:

[
  {"file": "conftest.py", "fixture": "iterator_fixture"},
  {"file": "utils/conftest.py", "fixture": "auto_cleanup"},
  {"file": "utils/conftest.py", "fixture": "temp_dir"},
  {"file": "utils/conftest.py", "fixture": "temp_file"}
]

This command is ideal for:

  • CI/CD pipelines - fail builds when unused fixtures accumulate
  • Code cleanup - identify dead code in test infrastructure
  • Linting - integrate with pre-commit hooks or quality gates

Supported Fixture Patterns

Decorator Style

@pytest.fixture
def my_fixture():
    """Fixture docstring."""
    return 42

Assignment Style (pytest-mock)

mocker = pytest.fixture()(_mocker)

Async Fixtures

@pytest.fixture
async def async_fixture():
    return await some_async_operation()

Fixture Dependencies

@pytest.fixture
def fixture_a():
    return "a"

@pytest.fixture
def fixture_b(fixture_a):  # Go to definition works on fixture_a
    return fixture_a + "b"

@pytest.mark.usefixtures

@pytest.mark.usefixtures("database", "cache")
class TestWithFixtures:
    def test_something(self):
        pass  # database and cache are available

@pytest.mark.parametrize with indirect

@pytest.fixture
def user(request):
    return User(name=request.param)

# All parameters treated as fixtures
@pytest.mark.parametrize("user", ["alice", "bob"], indirect=True)
def test_user(user):
    pass

# Selective indirect fixtures
@pytest.mark.parametrize("user,value", [("alice", 1)], indirect=["user"])
def test_user_value(user, value):
    pass

Imported Fixtures (from ... import *)

# conftest.py
from .pytest_fixtures import *  # Fixtures from pytest_fixtures.py are available

pytest_plugins Variable

# conftest.py
pytest_plugins = ["myapp.fixtures", "other.fixtures"]

# Also supports single strings, tuples, and annotated assignments:
# pytest_plugins = "myapp.fixtures"
# pytest_plugins = ("myapp.fixtures",)
# pytest_plugins: list[str] = ["myapp.fixtures"]

Fixtures declared in pytest_plugins modules are automatically discovered in conftest.py, test files, and plugin entry point modules. Only static string literals are supported โ€” dynamic values are ignored.

Fixture Priority Rules

pytest-language-server correctly implements pytest's fixture shadowing rules:

  1. Same file: Fixtures defined in the same file have highest priority
  2. Closest conftest.py: Searches parent directories for conftest.py files
  3. Virtual environment: Third-party plugin fixtures

Fixture Overriding

The LSP correctly handles complex fixture overriding scenarios:

# conftest.py (parent)
@pytest.fixture
def cli_runner():
    return "parent runner"

# tests/conftest.py (child)
@pytest.fixture
def cli_runner(cli_runner):  # Overrides parent
    return cli_runner  # Uses parent

# tests/test_example.py
def test_example(cli_runner):  # Uses child
    pass

When using find-references:

  • Clicking on the function name def cli_runner(...) shows references to the child fixture
  • Clicking on the parameter cli_runner(cli_runner) shows references to the parent fixture
  • Character-position aware to distinguish between the two

Supported Third-Party Fixtures

Automatically discovers fixtures from 50+ popular pytest plugins, including:

  • Testing frameworks: pytest-mock, pytest-asyncio, pytest-bdd, pytest-cases
  • Web frameworks: pytest-flask, pytest-django, pytest-aiohttp, pytest-tornado, pytest-sanic, pytest-fastapi
  • HTTP clients: pytest-httpx
  • Databases: pytest-postgresql, pytest-mongodb, pytest-redis, pytest-mysql, pytest-elasticsearch
  • Infrastructure: pytest-docker, pytest-kubernetes, pytest-rabbitmq, pytest-celery
  • Browser testing: pytest-selenium, pytest-playwright, pytest-splinter
  • Performance: pytest-benchmark, pytest-timeout
  • Test data: pytest-factoryboy, pytest-freezegun, pytest-mimesis
  • And many more...

The server automatically scans your virtual environment for any pytest plugin and makes their fixtures available.

Architecture

  • Language: Rust ๐Ÿฆ€
  • LSP Framework: tower-lsp-server
  • Parser: rustpython-parser
  • Concurrency: tokio async runtime
  • Data Structures: DashMap for lock-free concurrent access

Development

Prerequisites

  • Rust 1.85+ (2021 edition)
  • Python 3.10+ (for testing)

Building

cargo build --release

Running Tests

cargo test

Logging During Development

RUST_LOG=debug cargo run

Security

Security is a priority. This project includes:

  • Automated dependency vulnerability scanning (cargo-audit)
  • License compliance checking (cargo-deny)
  • Daily security audits in CI/CD
  • Dependency review on pull requests
  • Pre-commit security hooks

See SECURITY.md for our security policy and how to report vulnerabilities.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Development Setup

  1. Install pre-commit hooks:

    pre-commit install
    
  2. Run security checks locally:

    cargo audit
    cargo clippy
    cargo test
    

License

MIT License - see LICENSE file for details.

Acknowledgments

Built with:

Special thanks to the pytest team for creating such an amazing testing framework.


Made with โค๏ธ and Rust. Blazingly fast ๐Ÿ”ฅ

Built with AI assistance, maintained with care.

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

pytest_language_server-0.22.2.tar.gz (3.0 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pytest_language_server-0.22.2-py3-none-win_amd64.whl (3.4 MB view details)

Uploaded Python 3Windows x86-64

pytest_language_server-0.22.2-py3-none-win32.whl (3.1 MB view details)

Uploaded Python 3Windows x86

pytest_language_server-0.22.2-py3-none-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

pytest_language_server-0.22.2-py3-none-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded Python 3musllinux: musl 1.2+ i686

pytest_language_server-0.22.2-py3-none-musllinux_1_2_armv7l.whl (3.8 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARMv7l

pytest_language_server-0.22.2-py3-none-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

pytest_language_server-0.22.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

pytest_language_server-0.22.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.9 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

pytest_language_server-0.22.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

pytest_language_server-0.22.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

pytest_language_server-0.22.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

pytest_language_server-0.22.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

pytest_language_server-0.22.2-py3-none-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

pytest_language_server-0.22.2-py3-none-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

File details

Details for the file pytest_language_server-0.22.2.tar.gz.

File metadata

  • Download URL: pytest_language_server-0.22.2.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pytest_language_server-0.22.2.tar.gz
Algorithm Hash digest
SHA256 ba6e867cfd0757bc8f49b08768c8d37ccd28c82e8000949aec9221c5cb93ecd5
MD5 7b6136730ba005494248bae7d03ea167
BLAKE2b-256 93be7cde43708f2e8455b394892d5d02ef446aa4213854d85750d85a9fcdd207

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2.tar.gz:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 9948daf2061ada412458acd3524da213617b144bdef9068c6269477a0920f66e
MD5 0df07ddd35970e9d979e003603a615ca
BLAKE2b-256 2a4eb1c395ed7f21ea98d10d4b053079503100e26e86739cad059e4485c6d540

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-win_amd64.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-win32.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-win32.whl
Algorithm Hash digest
SHA256 482b28c6e74fa441bb7283ed959567b75c34beab0b00adbd70aab51135a95e4f
MD5 4a6bcaa332f632476d8be29456d4207b
BLAKE2b-256 d327281ef7c2c1302dee9d746b4108fd349590e3e92664046228c3e43d5c02ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-win32.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1aa31ea4e11a6b42865dbf47147c971cf73ecb585548348c800c60442e9629c
MD5 6785e2bc9d2123a2b38cd182347405b2
BLAKE2b-256 7402058acab8bc4c13f17c774067bd8abcc28859cb72eb4cea1c4a06fd13f21d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-musllinux_1_2_x86_64.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2b2797a032e2a62548f3b6d110267dde8ec85b40e76423ecd8a621832abaf68
MD5 aab5378266140e25115519a795804dfb
BLAKE2b-256 eb5676db317a615ec12fa379314d30fdff10ce567a1d282e8d17b05a1ec749b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-musllinux_1_2_i686.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef906df429daabec33386a2f805d235480bed0ed846342444117cc147417a317
MD5 67201e0af62580c69b8ee36124cec0af
BLAKE2b-256 d63fb747512c237311c3aa9cbf6a719c5faf0de1b9224ea0762ec449f445ee09

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-musllinux_1_2_armv7l.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed311a2f7a6dc11c3910a76ba6e95ff7189ae0f9f8005ce5811360450f33df3f
MD5 2aaafcc4b82715aada20f67f7096b03f
BLAKE2b-256 9d536d27c4f8b17eb1d0c231474b4fe50048745b5fe962eb624b285620d6e9ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-musllinux_1_2_aarch64.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4fa5dfb7be665d214d29b4b8a44ec6d48067180c59598d68a4dc11505981338
MD5 9b85783b121c488259ad91b8fd30c90a
BLAKE2b-256 a082fd11e7bd3ddfcb1e8c1a30ec56ed62cd28030ae2d0c5dff40643c7a46d62

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4036410854d772b5eabc663d77bae46c76c651eb79b0a22fae9ff8d807ec52ea
MD5 872c3072aab81f8c85a051d7c88a91a9
BLAKE2b-256 4d13e7ede6e03ccf72dda395027a141a30c113b344148e1023c55dc6c1010c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 df088e42be52fa4289e37f972af0e9e5e257644e92ab2e66eb7da1cbd551f4f6
MD5 909c2b26965747c49cf6037322727272
BLAKE2b-256 18b2d56fe00c58ec6bb9ea39d85ffe7f8091cf0ad44aa68075bb0c0b040ebef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35efd3129da9d5d7ccb403995ee41c556849d878095aca033d3ee63c404dcbfa
MD5 43a506f4bea6575976593ab41c5ecf08
BLAKE2b-256 2be6981e3d29fb98d97a3e1b08010df8661f8859f29a0d8a2b829d4bf9d8eba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d903fd703ae0ab351acefe2c2c9e28b264e305170720ecb58c0d08d1a545e145
MD5 4bff63c9d3f8d2e58da59d7fb6ff08e8
BLAKE2b-256 fa554d88b82cb72da9b2be2eed3cc25444abbbee07b0598f2e80c7b8607163fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3323b8cc0bf7ea3a25b18898dbf190fbfae52abbeb5285f9c8704b459076d53b
MD5 0b7813b2f0c84cbc677bbe1009517c40
BLAKE2b-256 44cba14215736f919593a6aab80ae3ba25ccff37e42e95a9fda99e7dda6dea7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d179c5ce473428ff6d00e9ba74433df2ce120112a2a924cb88bdff039781dc5
MD5 8bd7da7808cc597bef6db594889edfb5
BLAKE2b-256 757bfbe55f6e65811c790b5c53600502f18f71df6203648ab43ac63701ae4890

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-macosx_11_0_arm64.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_language_server-0.22.2-py3-none-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pytest_language_server-0.22.2-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd518201c77d105be1771413d7e9bbb72c8179d54a5b194b8b3c36dc7478d195
MD5 889b0f99f04cbd904a67aeaa473c6160
BLAKE2b-256 116cc592d837b6bfa638521be7ada7de9679b839c85d6fab869f50890dc9128f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_language_server-0.22.2-py3-none-macosx_10_12_x86_64.whl:

Publisher: release.yml on bellini666/pytest-language-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page