Skip to content

Commit

Permalink
Output relative paths for GitLab
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh committed Mar 13, 2023
1 parent a65c680 commit 6326ce1
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/ruff/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ path-absolutize = { workspace = true, features = [
"once_cell_cache",
"use_unix_paths_on_wasm",
] }
pathdiff = { version = "0.2.1" }
regex = { workspace = true }
result-like = { version = "0.4.6" }
rustc-hash = { workspace = true }
Expand Down
12 changes: 11 additions & 1 deletion crates/ruff/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,20 @@ pub fn normalize_path_to<P: AsRef<Path>, R: AsRef<Path>>(path: P, project_root:
}

/// Convert an absolute path to be relative to the current working directory.
pub fn relativize_path(path: impl AsRef<Path>) -> String {
pub fn relativize_path<P: AsRef<Path>>(path: P) -> String {
let path = path.as_ref();
if let Ok(path) = path.strip_prefix(&*path_dedot::CWD) {
return format!("{}", path.display());
}
format!("{}", path.display())
}

/// Convert an absolute path to be relative to the specified project root.
pub fn relativize_path_to<P: AsRef<Path>, R: AsRef<Path>>(path: P, project_root: R) -> String {
format!(
"{}",
pathdiff::diff_paths(&path, project_root)
.expect("Could not diff paths")
.display()
)
}
12 changes: 8 additions & 4 deletions crates/ruff_cli/src/printer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ use std::collections::hash_map::DefaultHasher;
use std::collections::BTreeMap;
use std::fmt::Display;
use std::hash::{Hash, Hasher};
use std::io;
use std::io::{BufWriter, Write};
use std::path::Path;
use std::{env, io};

use annotate_snippets::display_list::{DisplayList, FormatOptions};
use annotate_snippets::snippet::{Annotation, AnnotationType, Slice, Snippet, SourceAnnotation};
Expand All @@ -18,7 +18,7 @@ use rustc_hash::FxHashMap;
use serde::Serialize;
use serde_json::json;

use ruff::fs::relativize_path;
use ruff::fs::{relativize_path, relativize_path_to};
use ruff::linter::FixTable;
use ruff::logging::LogLevel;
use ruff::message::{Location, Message};
Expand Down Expand Up @@ -341,7 +341,8 @@ impl Printer {
}
SerializationFormat::Gitlab => {
// Generate JSON with violations in GitLab CI format
// https://docs.gitlab.com/ee/ci/testing/code_quality.html#implementing-a-custom-tool
// https://docs.gitlab.com/ee/ci/testing/code_quality.html#implement-a-custom-tool
let project_dir = env::var("CI_PROJECT_DIR").ok();
writeln!(stdout,
"{}",
serde_json::to_string_pretty(
Expand All @@ -354,7 +355,10 @@ impl Printer {
"severity": "major",
"fingerprint": fingerprint(message),
"location": {
"path": message.filename,
"path": project_dir.as_ref().map_or_else(
|| relativize_path(Path::new(&message.filename)),
|project_dir| relativize_path_to(&message.filename, project_dir),
),
"lines": {
"begin": message.location.row(),
"end": message.end_location.row()
Expand Down

0 comments on commit 6326ce1

Please sign in to comment.