-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
156 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
tests/fixtures/missing_directory_dependency/missing-bak/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[tool.poetry] | ||
name = "missing" | ||
version = "1.0.0" | ||
description = "This is a description" | ||
authors = ["Your Name <you@example.com>"] | ||
license = "MIT" | ||
packages = [] | ||
|
||
[tool.poetry.dependencies] | ||
python = "*" | ||
pendulum = "1.4.4" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
tests/fixtures/missing_directory_dependency_from_group/missing-bak/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[tool.poetry] | ||
name = "missing" | ||
version = "1.0.0" | ||
description = "This is a description" | ||
authors = ["Your Name <you@example.com>"] | ||
license = "MIT" | ||
packages = [] | ||
|
||
[tool.poetry.dependencies] | ||
python = "*" |
20 changes: 20 additions & 0 deletions
20
tests/fixtures/missing_directory_dependency_from_group/poetry.lock
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
tests/fixtures/missing_directory_dependency_from_group/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[tool.poetry] | ||
name = "project-with-missing-directory-dependency-from-group" | ||
version = "1.2.3" | ||
description = "This is a description" | ||
authors = ["Your Name <you@example.com>"] | ||
license = "MIT" | ||
packages = [] | ||
|
||
[tool.poetry.dependencies] | ||
python = "*" | ||
|
||
[tool.poetry.dev-dependencies] | ||
missing = { path = "./missing" } |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters