-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: hoist oci_python_image example to root module (#400)
* refactor: hoist oci_python_image example to root module * fix assertion * fix assertion * cleanup * chore: fmt * chore: disable failing docker test on AW --------- Co-authored-by: thesayyn <[email protected]>
- Loading branch information
Showing
20 changed files
with
211 additions
and
1,608 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
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
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
load("@rules_python//python:pip.bzl", "compile_pip_requirements") | ||
|
||
compile_pip_requirements( | ||
name = "requirements", | ||
src = "requirements.in", | ||
requirements_txt = "requirements.txt", | ||
extra_args = ["--allow-unsafe"], | ||
exports_files( | ||
["requirements.txt"], | ||
visibility = ["//requirements:__pkg__"], | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# See https://github.com/GoogleContainerTools/container-structure-test#command-tests | ||
schemaVersion: 2.0.0 | ||
metadataTest: | ||
entrypoint: ['/hello_world/hello_world'] | ||
entrypoint: ['/oci_python_image/hello_world/hello_world'] | ||
commandTests: | ||
- name: run | ||
command: /hello_world/hello_world | ||
command: /oci_python_image/hello_world/hello_world | ||
expectedOutput: ['hello py_image_layer!'] |
Oops, something went wrong.