mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-22 20:45:11 +00:00

## Summary This PR adds some snapshot tests for the resolver based on executing resolutions within a "mock" of the Airflow repo (that is: a folder that contains a subset of the repo's files, but all empty, and with an only-partially-complete virtual environment). It's intended to act as a lightweight integration test, to enable us to test resolutions on a "real" project without adding a dependency on Airflow itself.
22 lines
496 B
TOML
22 lines
496 B
TOML
[package]
|
|
name = "ruff_python_resolver"
|
|
version = "0.0.0"
|
|
description = "A Python module resolver for Ruff"
|
|
publish = false
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
log = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.10.0"
|
|
tempfile = "3.6.0"
|
|
insta = { workspace = true }
|