Turn =
deprecation warning into a hard error (#780)
It's been around two and a half years, and many versions, since this warning was first introduced, so it feels reasonable to finally turn it into a hard error. It will remain a special-cased error for a little while.
This commit is contained in:
parent
4e2e10177b
commit
10282bd636
@ -202,8 +202,8 @@ mod tests {
|
|||||||
|
|
||||||
analysis_error! {
|
analysis_error! {
|
||||||
name: duplicate_alias,
|
name: duplicate_alias,
|
||||||
input: "alias foo = bar\nalias foo = baz",
|
input: "alias foo := bar\nalias foo := baz",
|
||||||
offset: 22,
|
offset: 23,
|
||||||
line: 1,
|
line: 1,
|
||||||
column: 6,
|
column: 6,
|
||||||
width: 3,
|
width: 3,
|
||||||
@ -212,7 +212,7 @@ mod tests {
|
|||||||
|
|
||||||
analysis_error! {
|
analysis_error! {
|
||||||
name: unknown_alias_target,
|
name: unknown_alias_target,
|
||||||
input: "alias foo = bar\n",
|
input: "alias foo := bar\n",
|
||||||
offset: 6,
|
offset: 6,
|
||||||
line: 0,
|
line: 0,
|
||||||
column: 6,
|
column: 6,
|
||||||
@ -222,7 +222,7 @@ mod tests {
|
|||||||
|
|
||||||
analysis_error! {
|
analysis_error! {
|
||||||
name: alias_shadows_recipe_before,
|
name: alias_shadows_recipe_before,
|
||||||
input: "bar: \n echo bar\nalias foo = bar\nfoo:\n echo foo",
|
input: "bar: \n echo bar\nalias foo := bar\nfoo:\n echo foo",
|
||||||
offset: 23,
|
offset: 23,
|
||||||
line: 2,
|
line: 2,
|
||||||
column: 6,
|
column: 6,
|
||||||
@ -232,7 +232,7 @@ mod tests {
|
|||||||
|
|
||||||
analysis_error! {
|
analysis_error! {
|
||||||
name: alias_shadows_recipe_after,
|
name: alias_shadows_recipe_after,
|
||||||
input: "foo:\n echo foo\nalias foo = bar\nbar:\n echo bar",
|
input: "foo:\n echo foo\nalias foo := bar\nbar:\n echo bar",
|
||||||
offset: 22,
|
offset: 22,
|
||||||
line: 2,
|
line: 2,
|
||||||
column: 6,
|
column: 6,
|
||||||
@ -272,8 +272,8 @@ mod tests {
|
|||||||
|
|
||||||
analysis_error! {
|
analysis_error! {
|
||||||
name: parameter_shadows_varible,
|
name: parameter_shadows_varible,
|
||||||
input: "foo = \"h\"\na foo:",
|
input: "foo := \"h\"\na foo:",
|
||||||
offset: 12,
|
offset: 13,
|
||||||
line: 1,
|
line: 1,
|
||||||
column: 2,
|
column: 2,
|
||||||
width: 3,
|
width: 3,
|
||||||
@ -292,8 +292,8 @@ mod tests {
|
|||||||
|
|
||||||
analysis_error! {
|
analysis_error! {
|
||||||
name: duplicate_variable,
|
name: duplicate_variable,
|
||||||
input: "a = \"0\"\na = \"0\"",
|
input: "a := \"0\"\na := \"0\"",
|
||||||
offset: 8,
|
offset: 9,
|
||||||
line: 1,
|
line: 1,
|
||||||
column: 0,
|
column: 0,
|
||||||
width: 1,
|
width: 1,
|
||||||
|
@ -111,7 +111,7 @@ mod tests {
|
|||||||
|
|
||||||
analysis_error! {
|
analysis_error! {
|
||||||
name: circular_variable_dependency,
|
name: circular_variable_dependency,
|
||||||
input: "a = b\nb = a",
|
input: "a := b\nb := a",
|
||||||
offset: 0,
|
offset: 0,
|
||||||
line: 0,
|
line: 0,
|
||||||
column: 0,
|
column: 0,
|
||||||
@ -121,8 +121,8 @@ mod tests {
|
|||||||
|
|
||||||
analysis_error! {
|
analysis_error! {
|
||||||
name: self_variable_dependency,
|
name: self_variable_dependency,
|
||||||
input: "a = a",
|
input: "a := a",
|
||||||
offset: 0,
|
offset: 0,
|
||||||
line: 0,
|
line: 0,
|
||||||
column: 0,
|
column: 0,
|
||||||
width: 1,
|
width: 1,
|
||||||
@ -131,10 +131,10 @@ mod tests {
|
|||||||
|
|
||||||
analysis_error! {
|
analysis_error! {
|
||||||
name: unknown_expression_variable,
|
name: unknown_expression_variable,
|
||||||
input: "x = yy",
|
input: "x := yy",
|
||||||
offset: 4,
|
offset: 5,
|
||||||
line: 0,
|
line: 0,
|
||||||
column: 4,
|
column: 5,
|
||||||
width: 2,
|
width: 2,
|
||||||
kind: UndefinedVariable{variable: "yy"},
|
kind: UndefinedVariable{variable: "yy"},
|
||||||
}
|
}
|
||||||
|
@ -62,6 +62,16 @@ impl Display for CompilationError<'_> {
|
|||||||
};
|
};
|
||||||
writeln!(f, "`\\{}` is not a valid escape sequence", representation)?;
|
writeln!(f, "`\\{}` is not a valid escape sequence", representation)?;
|
||||||
},
|
},
|
||||||
|
DeprecatedEquals => {
|
||||||
|
writeln!(
|
||||||
|
f,
|
||||||
|
"`=` in assignments, exports, and aliases has been phased out on favor of `:=`"
|
||||||
|
)?;
|
||||||
|
writeln!(
|
||||||
|
f,
|
||||||
|
"Please see this issue for more details: https://github.com/casey/just/issues/379"
|
||||||
|
)?;
|
||||||
|
},
|
||||||
DuplicateParameter { recipe, parameter } => {
|
DuplicateParameter { recipe, parameter } => {
|
||||||
writeln!(
|
writeln!(
|
||||||
f,
|
f,
|
||||||
|
@ -20,6 +20,7 @@ pub(crate) enum CompilationErrorKind<'src> {
|
|||||||
min: usize,
|
min: usize,
|
||||||
max: usize,
|
max: usize,
|
||||||
},
|
},
|
||||||
|
DeprecatedEquals,
|
||||||
DuplicateAlias {
|
DuplicateAlias {
|
||||||
alias: &'src str,
|
alias: &'src str,
|
||||||
first: usize,
|
first: usize,
|
||||||
|
@ -275,8 +275,8 @@ mod tests {
|
|||||||
run_error! {
|
run_error! {
|
||||||
name: export_assignment_backtick,
|
name: export_assignment_backtick,
|
||||||
src: r#"
|
src: r#"
|
||||||
export exported_variable = "A"
|
export exported_variable := "A"
|
||||||
b = `echo $exported_variable`
|
b := `echo $exported_variable`
|
||||||
|
|
||||||
recipe:
|
recipe:
|
||||||
echo {{b}}
|
echo {{b}}
|
||||||
|
@ -6,7 +6,7 @@ pub(crate) struct Justfile<'src> {
|
|||||||
pub(crate) assignments: Table<'src, Assignment<'src>>,
|
pub(crate) assignments: Table<'src, Assignment<'src>>,
|
||||||
pub(crate) aliases: Table<'src, Alias<'src>>,
|
pub(crate) aliases: Table<'src, Alias<'src>>,
|
||||||
pub(crate) settings: Settings<'src>,
|
pub(crate) settings: Settings<'src>,
|
||||||
pub(crate) warnings: Vec<Warning<'src>>,
|
pub(crate) warnings: Vec<Warning>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'src> Justfile<'src> {
|
impl<'src> Justfile<'src> {
|
||||||
@ -557,10 +557,10 @@ mod tests {
|
|||||||
run_error! {
|
run_error! {
|
||||||
name: export_failure,
|
name: export_failure,
|
||||||
src: r#"
|
src: r#"
|
||||||
export foo = "a"
|
export foo := "a"
|
||||||
baz = "c"
|
baz := "c"
|
||||||
export bar = "b"
|
export bar := "b"
|
||||||
export abc = foo + bar + baz
|
export abc := foo + bar + baz
|
||||||
|
|
||||||
wut:
|
wut:
|
||||||
echo $foo $bar $baz
|
echo $foo $bar $baz
|
||||||
|
@ -12,5 +12,5 @@ pub(crate) struct Module<'src> {
|
|||||||
/// Items in the justfile
|
/// Items in the justfile
|
||||||
pub(crate) items: Vec<Item<'src>>,
|
pub(crate) items: Vec<Item<'src>>,
|
||||||
/// Non-fatal warnings encountered during parsing
|
/// Non-fatal warnings encountered during parsing
|
||||||
pub(crate) warnings: Vec<Warning<'src>>,
|
pub(crate) warnings: Vec<Warning>,
|
||||||
}
|
}
|
||||||
|
@ -204,10 +204,8 @@ impl<'src> Node<'src> for Set<'src> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'src> Node<'src> for Warning<'src> {
|
impl<'src> Node<'src> for Warning {
|
||||||
fn tree(&self) -> Tree<'src> {
|
fn tree(&self) -> Tree<'src> {
|
||||||
match self {
|
unreachable!()
|
||||||
Warning::DeprecatedEquals { .. } => Tree::atom("warning").push("deprecated_equals"),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -308,7 +308,6 @@ impl<'tokens, 'src> Parser<'tokens, 'src> {
|
|||||||
/// Parse a justfile, consumes self
|
/// Parse a justfile, consumes self
|
||||||
fn parse_justfile(mut self) -> CompilationResult<'src, Module<'src>> {
|
fn parse_justfile(mut self) -> CompilationResult<'src, Module<'src>> {
|
||||||
let mut items = Vec::new();
|
let mut items = Vec::new();
|
||||||
let mut warnings = Vec::new();
|
|
||||||
|
|
||||||
let mut doc = None;
|
let mut doc = None;
|
||||||
|
|
||||||
@ -325,10 +324,7 @@ impl<'tokens, 'src> Parser<'tokens, 'src> {
|
|||||||
match Keyword::from_lexeme(next.lexeme()) {
|
match Keyword::from_lexeme(next.lexeme()) {
|
||||||
Some(Keyword::Alias) =>
|
Some(Keyword::Alias) =>
|
||||||
if self.next_are(&[Identifier, Identifier, Equals]) {
|
if self.next_are(&[Identifier, Identifier, Equals]) {
|
||||||
warnings.push(Warning::DeprecatedEquals {
|
return Err(self.get(2)?.error(CompilationErrorKind::DeprecatedEquals));
|
||||||
equals: self.get(2)?,
|
|
||||||
});
|
|
||||||
items.push(Item::Alias(self.parse_alias()?));
|
|
||||||
} else if self.next_are(&[Identifier, Identifier, ColonEquals]) {
|
} else if self.next_are(&[Identifier, Identifier, ColonEquals]) {
|
||||||
items.push(Item::Alias(self.parse_alias()?));
|
items.push(Item::Alias(self.parse_alias()?));
|
||||||
} else {
|
} else {
|
||||||
@ -336,11 +332,7 @@ impl<'tokens, 'src> Parser<'tokens, 'src> {
|
|||||||
},
|
},
|
||||||
Some(Keyword::Export) =>
|
Some(Keyword::Export) =>
|
||||||
if self.next_are(&[Identifier, Identifier, Equals]) {
|
if self.next_are(&[Identifier, Identifier, Equals]) {
|
||||||
warnings.push(Warning::DeprecatedEquals {
|
return Err(self.get(2)?.error(CompilationErrorKind::DeprecatedEquals));
|
||||||
equals: self.get(2)?,
|
|
||||||
});
|
|
||||||
self.presume_keyword(Keyword::Export)?;
|
|
||||||
items.push(Item::Assignment(self.parse_assignment(true)?));
|
|
||||||
} else if self.next_are(&[Identifier, Identifier, ColonEquals]) {
|
} else if self.next_are(&[Identifier, Identifier, ColonEquals]) {
|
||||||
self.presume_keyword(Keyword::Export)?;
|
self.presume_keyword(Keyword::Export)?;
|
||||||
items.push(Item::Assignment(self.parse_assignment(true)?));
|
items.push(Item::Assignment(self.parse_assignment(true)?));
|
||||||
@ -358,10 +350,7 @@ impl<'tokens, 'src> Parser<'tokens, 'src> {
|
|||||||
},
|
},
|
||||||
_ =>
|
_ =>
|
||||||
if self.next_are(&[Identifier, Equals]) {
|
if self.next_are(&[Identifier, Equals]) {
|
||||||
warnings.push(Warning::DeprecatedEquals {
|
return Err(self.get(1)?.error(CompilationErrorKind::DeprecatedEquals));
|
||||||
equals: self.get(1)?,
|
|
||||||
});
|
|
||||||
items.push(Item::Assignment(self.parse_assignment(false)?));
|
|
||||||
} else if self.next_are(&[Identifier, ColonEquals]) {
|
} else if self.next_are(&[Identifier, ColonEquals]) {
|
||||||
items.push(Item::Assignment(self.parse_assignment(false)?));
|
items.push(Item::Assignment(self.parse_assignment(false)?));
|
||||||
} else {
|
} else {
|
||||||
@ -385,7 +374,10 @@ impl<'tokens, 'src> Parser<'tokens, 'src> {
|
|||||||
self.tokens.len() - self.next,
|
self.tokens.len() - self.next,
|
||||||
))?)
|
))?)
|
||||||
} else {
|
} else {
|
||||||
Ok(Module { items, warnings })
|
Ok(Module {
|
||||||
|
warnings: Vec::new(),
|
||||||
|
items,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -882,10 +874,9 @@ mod tests {
|
|||||||
|
|
||||||
test! {
|
test! {
|
||||||
name: alias_equals,
|
name: alias_equals,
|
||||||
text: "alias t = test",
|
text: "alias t := test",
|
||||||
tree: (justfile
|
tree: (justfile
|
||||||
(alias t test)
|
(alias t test)
|
||||||
(warning deprecated_equals)
|
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -897,10 +888,9 @@ mod tests {
|
|||||||
|
|
||||||
test! {
|
test! {
|
||||||
name: export_equals,
|
name: export_equals,
|
||||||
text: r#"export x = "hello""#,
|
text: r#"export x := "hello""#,
|
||||||
tree: (justfile
|
tree: (justfile
|
||||||
(assignment #export x "hello")
|
(assignment #export x "hello")
|
||||||
(warning deprecated_equals)
|
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -912,10 +902,9 @@ mod tests {
|
|||||||
|
|
||||||
test! {
|
test! {
|
||||||
name: assignment_equals,
|
name: assignment_equals,
|
||||||
text: r#"x = "hello""#,
|
text: r#"x := "hello""#,
|
||||||
tree: (justfile
|
tree: (justfile
|
||||||
(assignment x "hello")
|
(assignment x "hello")
|
||||||
(warning deprecated_equals)
|
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1691,23 +1680,23 @@ mod tests {
|
|||||||
}
|
}
|
||||||
|
|
||||||
error! {
|
error! {
|
||||||
name: alias_syntax_multiple_rhs,
|
name: alias_syntax_multiple_rhs,
|
||||||
input: "alias foo = bar baz",
|
input: "alias foo := bar baz",
|
||||||
offset: 16,
|
offset: 17,
|
||||||
line: 0,
|
line: 0,
|
||||||
column: 16,
|
column: 17,
|
||||||
width: 3,
|
width: 3,
|
||||||
kind: UnexpectedToken { expected: vec![Comment, Eof, Eol], found: Identifier },
|
kind: UnexpectedToken { expected: vec![Comment, Eof, Eol], found: Identifier },
|
||||||
}
|
}
|
||||||
|
|
||||||
error! {
|
error! {
|
||||||
name: alias_syntax_no_rhs,
|
name: alias_syntax_no_rhs,
|
||||||
input: "alias foo = \n",
|
input: "alias foo := \n",
|
||||||
offset: 12,
|
offset: 13,
|
||||||
line: 0,
|
line: 0,
|
||||||
column: 12,
|
column: 13,
|
||||||
width: 1,
|
width: 1,
|
||||||
kind: UnexpectedToken {expected: vec![Identifier], found:Eol},
|
kind: UnexpectedToken {expected: vec![Identifier], found:Eol},
|
||||||
}
|
}
|
||||||
|
|
||||||
error! {
|
error! {
|
||||||
@ -1774,10 +1763,10 @@ mod tests {
|
|||||||
|
|
||||||
error! {
|
error! {
|
||||||
name: unclosed_parenthesis_in_expression,
|
name: unclosed_parenthesis_in_expression,
|
||||||
input: "x = foo(",
|
input: "x := foo(",
|
||||||
offset: 8,
|
offset: 9,
|
||||||
line: 0,
|
line: 0,
|
||||||
column: 8,
|
column: 9,
|
||||||
width: 0,
|
width: 0,
|
||||||
kind: UnexpectedToken{
|
kind: UnexpectedToken{
|
||||||
expected: vec![Backtick, Identifier, ParenL, ParenR, StringCooked, StringRaw],
|
expected: vec![Backtick, Identifier, ParenL, ParenR, StringCooked, StringRaw],
|
||||||
@ -1952,10 +1941,10 @@ mod tests {
|
|||||||
|
|
||||||
error! {
|
error! {
|
||||||
name: unknown_function,
|
name: unknown_function,
|
||||||
input: "a = foo()",
|
input: "a := foo()",
|
||||||
offset: 4,
|
offset: 5,
|
||||||
line: 0,
|
line: 0,
|
||||||
column: 4,
|
column: 5,
|
||||||
width: 3,
|
width: 3,
|
||||||
kind: UnknownFunction{function: "foo"},
|
kind: UnknownFunction{function: "foo"},
|
||||||
}
|
}
|
||||||
|
@ -166,8 +166,8 @@ mod tests {
|
|||||||
|
|
||||||
analysis_error! {
|
analysis_error! {
|
||||||
name: unknown_second_interpolation_variable,
|
name: unknown_second_interpolation_variable,
|
||||||
input: "wtf=\"x\"\nx:\n echo\n foo {{wtf}} {{ lol }}",
|
input: "wtf:=\"x\"\nx:\n echo\n foo {{wtf}} {{ lol }}",
|
||||||
offset: 33,
|
offset: 34,
|
||||||
line: 3,
|
line: 3,
|
||||||
column: 16,
|
column: 16,
|
||||||
width: 3,
|
width: 3,
|
||||||
|
@ -1,40 +1,22 @@
|
|||||||
use crate::common::*;
|
use crate::common::*;
|
||||||
|
|
||||||
use Warning::*;
|
|
||||||
|
|
||||||
#[derive(Debug, PartialEq)]
|
#[derive(Debug, PartialEq)]
|
||||||
pub(crate) enum Warning<'src> {
|
pub(crate) enum Warning {}
|
||||||
DeprecatedEquals { equals: Token<'src> },
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'src> Warning<'src> {
|
impl Warning {
|
||||||
fn context(&self) -> Option<&Token<'src>> {
|
fn context(&self) -> Option<&Token> {
|
||||||
match self {
|
#![allow(clippy::unused_self)]
|
||||||
DeprecatedEquals { equals } => Some(equals),
|
unreachable!()
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Display for Warning<'_> {
|
impl Display for Warning {
|
||||||
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
||||||
let warning = Color::fmt(f).warning();
|
let warning = Color::fmt(f).warning();
|
||||||
let message = Color::fmt(f).message();
|
let message = Color::fmt(f).message();
|
||||||
|
|
||||||
write!(f, "{} {}", warning.paint("warning:"), message.prefix())?;
|
write!(f, "{} {}", warning.paint("warning:"), message.prefix())?;
|
||||||
|
|
||||||
match self {
|
|
||||||
DeprecatedEquals { .. } => {
|
|
||||||
writeln!(
|
|
||||||
f,
|
|
||||||
"`=` in assignments, exports, and aliases is being phased out on favor of `:=`"
|
|
||||||
)?;
|
|
||||||
write!(
|
|
||||||
f,
|
|
||||||
"Please see this issue for more details: https://github.com/casey/just/issues/379"
|
|
||||||
)?;
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
write!(f, "{}", message.suffix())?;
|
write!(f, "{}", message.suffix())?;
|
||||||
|
|
||||||
if let Some(token) = self.context() {
|
if let Some(token) = self.context() {
|
||||||
|
@ -2178,15 +2178,14 @@ test! {
|
|||||||
default:
|
default:
|
||||||
echo {{foo}}
|
echo {{foo}}
|
||||||
",
|
",
|
||||||
stdout: "bar\n",
|
|
||||||
stderr: "
|
stderr: "
|
||||||
warning: `=` in assignments, exports, and aliases is being phased out on favor of `:=`
|
error: `=` in assignments, exports, and aliases has been phased out on favor of `:=`
|
||||||
Please see this issue for more details: https://github.com/casey/just/issues/379
|
Please see this issue for more details: https://github.com/casey/just/issues/379
|
||||||
|
|
|
|
||||||
1 | foo = 'bar'
|
1 | foo = 'bar'
|
||||||
| ^
|
| ^
|
||||||
echo bar
|
|
||||||
",
|
",
|
||||||
|
status: EXIT_FAILURE,
|
||||||
}
|
}
|
||||||
|
|
||||||
test! {
|
test! {
|
||||||
@ -2197,15 +2196,14 @@ test! {
|
|||||||
default:
|
default:
|
||||||
echo $FOO
|
echo $FOO
|
||||||
",
|
",
|
||||||
stdout: "bar\n",
|
|
||||||
stderr: "
|
stderr: "
|
||||||
warning: `=` in assignments, exports, and aliases is being phased out on favor of `:=`
|
error: `=` in assignments, exports, and aliases has been phased out on favor of `:=`
|
||||||
Please see this issue for more details: https://github.com/casey/just/issues/379
|
Please see this issue for more details: https://github.com/casey/just/issues/379
|
||||||
|
|
|
|
||||||
1 | export FOO = 'bar'
|
1 | export FOO = 'bar'
|
||||||
| ^
|
| ^
|
||||||
echo $FOO
|
|
||||||
",
|
",
|
||||||
|
status: EXIT_FAILURE,
|
||||||
}
|
}
|
||||||
|
|
||||||
test! {
|
test! {
|
||||||
@ -2217,15 +2215,14 @@ test! {
|
|||||||
echo default
|
echo default
|
||||||
",
|
",
|
||||||
args: ("foo"),
|
args: ("foo"),
|
||||||
stdout: "default\n",
|
|
||||||
stderr: "
|
stderr: "
|
||||||
warning: `=` in assignments, exports, and aliases is being phased out on favor of `:=`
|
error: `=` in assignments, exports, and aliases has been phased out on favor of `:=`
|
||||||
Please see this issue for more details: https://github.com/casey/just/issues/379
|
Please see this issue for more details: https://github.com/casey/just/issues/379
|
||||||
|
|
|
|
||||||
1 | alias foo = default
|
1 | alias foo = default
|
||||||
| ^
|
| ^
|
||||||
echo default
|
|
||||||
",
|
",
|
||||||
|
status: EXIT_FAILURE,
|
||||||
}
|
}
|
||||||
|
|
||||||
test! {
|
test! {
|
||||||
|
@ -65,16 +65,6 @@ default:
|
|||||||
status: 100,
|
status: 100,
|
||||||
}
|
}
|
||||||
|
|
||||||
test! {
|
|
||||||
name: warning,
|
|
||||||
justfile: "
|
|
||||||
foo = 'bar'
|
|
||||||
|
|
||||||
baz:
|
|
||||||
",
|
|
||||||
args: ("--quiet"),
|
|
||||||
}
|
|
||||||
|
|
||||||
test! {
|
test! {
|
||||||
name: choose_none,
|
name: choose_none,
|
||||||
justfile: "",
|
justfile: "",
|
||||||
|
Loading…
Reference in New Issue
Block a user