Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
j178 committed Sep 28, 2024
1 parent edceabb commit 9f2d9e6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions crates/uv/tests/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ fn init() -> Result<()> {
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down Expand Up @@ -101,6 +102,7 @@ fn init_application() -> Result<()> {
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down Expand Up @@ -172,6 +174,7 @@ fn init_application_hello_exists() -> Result<()> {
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down Expand Up @@ -223,6 +226,7 @@ fn init_application_other_python_exists() -> Result<()> {
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down Expand Up @@ -702,6 +706,7 @@ fn init_no_readme() -> Result<()> {
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.12"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down Expand Up @@ -737,6 +742,7 @@ fn init_no_pin_python() -> Result<()> {
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down Expand Up @@ -839,6 +845,7 @@ fn init_application_current_dir() -> Result<()> {
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down Expand Up @@ -1456,6 +1463,7 @@ fn init_no_workspace_warning() -> Result<()> {
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down Expand Up @@ -1530,6 +1538,7 @@ fn init_project_inside_project() -> Result<()> {
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down Expand Up @@ -1902,6 +1911,7 @@ fn init_requires_python_workspace() -> Result<()> {
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down Expand Up @@ -1960,6 +1970,7 @@ fn init_requires_python_version() -> Result<()> {
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down Expand Up @@ -2127,6 +2138,7 @@ fn init_failure() -> Result<()> {
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [ "Private :: Do Not Upload" ]
dependencies = []
"###
);
Expand Down

0 comments on commit 9f2d9e6

Please sign in to comment.