-
Notifications
You must be signed in to change notification settings - Fork 457
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: use lxd for python symlink tests
Signed-off-by: Callahan Kovacs <[email protected]>
- Loading branch information
Showing
31 changed files
with
120 additions
and
16 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
tests/spread/plugins/craft-parts/python-symlinks/bare-not-provisioned/src
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion
1
tests/spread/plugins/craft-parts/python-symlinks/bare-provisioned/src
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
tests/spread/plugins/craft-parts/python-symlinks/bare-provisioned/src/hello/__init__.py
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,2 @@ | ||
def main(): | ||
print("hello world") |
10 changes: 10 additions & 0 deletions
10
tests/spread/plugins/craft-parts/python-symlinks/bare-provisioned/src/setup.py
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 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="hello", | ||
version="0.1", | ||
entry_points={"console_scripts": ["hello=hello:main"]}, | ||
packages=["hello"], | ||
) |
1 change: 0 additions & 1 deletion
1
tests/spread/plugins/craft-parts/python-symlinks/classic-not-provisioned/src
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
.../spread/plugins/craft-parts/python-symlinks/classic-not-provisioned/src/hello/__init__.py
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,2 @@ | ||
def main(): | ||
print("hello world") |
10 changes: 10 additions & 0 deletions
10
tests/spread/plugins/craft-parts/python-symlinks/classic-not-provisioned/src/setup.py
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 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="hello", | ||
version="0.1", | ||
entry_points={"console_scripts": ["hello=hello:main"]}, | ||
packages=["hello"], | ||
) |
1 change: 0 additions & 1 deletion
1
tests/spread/plugins/craft-parts/python-symlinks/classic-provisioned/src
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
tests/spread/plugins/craft-parts/python-symlinks/classic-provisioned/src/hello/__init__.py
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,2 @@ | ||
def main(): | ||
print("hello world") |
10 changes: 10 additions & 0 deletions
10
tests/spread/plugins/craft-parts/python-symlinks/classic-provisioned/src/setup.py
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 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="hello", | ||
version="0.1", | ||
entry_points={"console_scripts": ["hello=hello:main"]}, | ||
packages=["hello"], | ||
) |
1 change: 0 additions & 1 deletion
1
tests/spread/plugins/craft-parts/python-symlinks/devmode-not-provisioned/src
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
.../spread/plugins/craft-parts/python-symlinks/devmode-not-provisioned/src/hello/__init__.py
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,2 @@ | ||
def main(): | ||
print("hello world") |
10 changes: 10 additions & 0 deletions
10
tests/spread/plugins/craft-parts/python-symlinks/devmode-not-provisioned/src/setup.py
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 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="hello", | ||
version="0.1", | ||
entry_points={"console_scripts": ["hello=hello:main"]}, | ||
packages=["hello"], | ||
) |
1 change: 0 additions & 1 deletion
1
tests/spread/plugins/craft-parts/python-symlinks/devmode-provisioned/src
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
tests/spread/plugins/craft-parts/python-symlinks/devmode-provisioned/src/hello/__init__.py
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,2 @@ | ||
def main(): | ||
print("hello world") |
10 changes: 10 additions & 0 deletions
10
tests/spread/plugins/craft-parts/python-symlinks/devmode-provisioned/src/setup.py
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 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="hello", | ||
version="0.1", | ||
entry_points={"console_scripts": ["hello=hello:main"]}, | ||
packages=["hello"], | ||
) |
1 change: 0 additions & 1 deletion
1
tests/spread/plugins/craft-parts/python-symlinks/provisioned-from-another-part/src
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
...d/plugins/craft-parts/python-symlinks/provisioned-from-another-part/src/hello/__init__.py
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,2 @@ | ||
def main(): | ||
print("hello world") |
10 changes: 10 additions & 0 deletions
10
tests/spread/plugins/craft-parts/python-symlinks/provisioned-from-another-part/src/setup.py
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 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="hello", | ||
version="0.1", | ||
entry_points={"console_scripts": ["hello=hello:main"]}, | ||
packages=["hello"], | ||
) |
1 change: 0 additions & 1 deletion
1
tests/spread/plugins/craft-parts/python-symlinks/strict-gnome-extension/src
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
...s/spread/plugins/craft-parts/python-symlinks/strict-gnome-extension/src/hello/__init__.py
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,2 @@ | ||
def main(): | ||
print("hello world") |
10 changes: 10 additions & 0 deletions
10
tests/spread/plugins/craft-parts/python-symlinks/strict-gnome-extension/src/setup.py
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 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="hello", | ||
version="0.1", | ||
entry_points={"console_scripts": ["hello=hello:main"]}, | ||
packages=["hello"], | ||
) |
1 change: 0 additions & 1 deletion
1
tests/spread/plugins/craft-parts/python-symlinks/strict-not-provisioned/src
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
...s/spread/plugins/craft-parts/python-symlinks/strict-not-provisioned/src/hello/__init__.py
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,2 @@ | ||
def main(): | ||
print("hello world") |
10 changes: 10 additions & 0 deletions
10
tests/spread/plugins/craft-parts/python-symlinks/strict-not-provisioned/src/setup.py
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 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="hello", | ||
version="0.1", | ||
entry_points={"console_scripts": ["hello=hello:main"]}, | ||
packages=["hello"], | ||
) |
1 change: 0 additions & 1 deletion
1
tests/spread/plugins/craft-parts/python-symlinks/strict-provisioned/src
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
tests/spread/plugins/craft-parts/python-symlinks/strict-provisioned/src/hello/__init__.py
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,2 @@ | ||
def main(): | ||
print("hello world") |
10 changes: 10 additions & 0 deletions
10
tests/spread/plugins/craft-parts/python-symlinks/strict-provisioned/src/setup.py
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 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="hello", | ||
version="0.1", | ||
entry_points={"console_scripts": ["hello=hello:main"]}, | ||
packages=["hello"], | ||
) |
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