-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #287 from zong-zhe/fix-missing-mod
fix: fix missing deps in local path
- Loading branch information
Showing
21 changed files
with
55 additions
and
1 deletion.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[package] | ||
name = "test_add_with_name" | ||
edition = "v0.8.0" | ||
version = "0.0.1" | ||
|
Empty file.
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 @@ | ||
The_first_kcl_program = 'Hello World!' |
7 changes: 7 additions & 0 deletions
7
test/e2e/test_suites/test_data/test_kpm_run_multi_local_path_0/pkg/pkg2/kcl.mod
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,7 @@ | ||
[package] | ||
name = "pkg2" | ||
edition = "v0.8.0" | ||
version = "0.0.1" | ||
|
||
[dependencies] | ||
pkg3 = { path = "../pkg3" } |
7 changes: 7 additions & 0 deletions
7
test/e2e/test_suites/test_data/test_kpm_run_multi_local_path_0/pkg/pkg2/kcl.mod.lock
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,7 @@ | ||
[dependencies] | ||
[dependencies.pkg3] | ||
name = "pkg3" | ||
full_name = "pkg3_0.0.1" | ||
version = "0.0.1" | ||
sum = "T29gAv6K/tLithhP5jVHyurV5zRFui+i1ulyMt/ncnM=" | ||
path = "../pkg3" |
3 changes: 3 additions & 0 deletions
3
test/e2e/test_suites/test_data/test_kpm_run_multi_local_path_0/pkg/pkg2/main.k
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,3 @@ | ||
import pkg3 | ||
|
||
The_first_kcl_program = pkg3.The_first_kcl_program |
5 changes: 5 additions & 0 deletions
5
test/e2e/test_suites/test_data/test_kpm_run_multi_local_path_0/pkg/pkg3/kcl.mod
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,5 @@ | ||
[package] | ||
name = "pkg3" | ||
edition = "v0.8.0" | ||
version = "0.0.1" | ||
|
Empty file.
1 change: 1 addition & 0 deletions
1
test/e2e/test_suites/test_data/test_kpm_run_multi_local_path_0/pkg/pkg3/main.k
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 @@ | ||
The_first_kcl_program = 'Hello World!' |
7 changes: 7 additions & 0 deletions
7
test/e2e/test_suites/test_data/test_kpm_run_multi_local_path_0/pkg1/kcl.mod
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,7 @@ | ||
[package] | ||
name = "pkg1" | ||
edition = "v0.8.0" | ||
version = "0.0.1" | ||
|
||
[dependencies] | ||
pkg2 = { path = "../pkg/pkg2" } |
7 changes: 7 additions & 0 deletions
7
test/e2e/test_suites/test_data/test_kpm_run_multi_local_path_0/pkg1/kcl.mod.lock
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,7 @@ | ||
[dependencies] | ||
[dependencies.pkg2] | ||
name = "pkg2" | ||
full_name = "pkg2_0.0.1" | ||
version = "0.0.1" | ||
sum = "JbfIAXPJb3L6xX7hi/A5mrXzjpB8eFoKfEmJMdHsewY=" | ||
path = "../pkg/pkg2" |
3 changes: 3 additions & 0 deletions
3
test/e2e/test_suites/test_data/test_kpm_run_multi_local_path_0/pkg1/main.k
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,3 @@ | ||
import pkg2 | ||
|
||
The_first_kcl_program = pkg2.The_first_kcl_program |