From c4b9507cc59d9ca1f7e547a6f5c9928b9cc22005 Mon Sep 17 00:00:00 2001 From: Liviu Date: Wed, 24 Nov 2021 10:44:59 +0100 Subject: [PATCH 1/6] modified helloworld; --- .idea/.gitignore | 8 ++++++++ .idea/modules.xml | 8 ++++++++ .idea/readme-code-testing.iml | 9 +++++++++ .idea/vcs.xml | 6 ++++++ src/helloworld.py | 2 +- 5 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/modules.xml create mode 100644 .idea/readme-code-testing.iml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..48679a3 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/readme-code-testing.iml b/.idea/readme-code-testing.iml new file mode 100644 index 0000000..5e764c4 --- /dev/null +++ b/.idea/readme-code-testing.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/helloworld.py b/src/helloworld.py index 822558c..6fadc89 100644 --- a/src/helloworld.py +++ b/src/helloworld.py @@ -1,2 +1,2 @@ def hello(): - return "v1.0.0 world" + return "v1.0.0 aaa world" From aaaeed1be098d1e361ef6dad374e538e688462a0 Mon Sep 17 00:00:00 2001 From: Liviu Date: Wed, 24 Nov 2021 10:48:27 +0100 Subject: [PATCH 2/6] changed helloworld --- src/helloworld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helloworld.py b/src/helloworld.py index 6fadc89..e1e6ade 100644 --- a/src/helloworld.py +++ b/src/helloworld.py @@ -1,2 +1,2 @@ def hello(): - return "v1.0.0 aaa world" + return "v1.0.0 bbb world" From abbe0f0d469755b515022b3dfca6e34f9599887c Mon Sep 17 00:00:00 2001 From: Liviu Date: Wed, 24 Nov 2021 10:50:48 +0100 Subject: [PATCH 3/6] changed helloworld --- src/helloworld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helloworld.py b/src/helloworld.py index 6fadc89..e1e6ade 100644 --- a/src/helloworld.py +++ b/src/helloworld.py @@ -1,2 +1,2 @@ def hello(): - return "v1.0.0 aaa world" + return "v1.0.0 bbb world" From 7b2ec9ad2144216d074ff6e9c4099e3251cb02c6 Mon Sep 17 00:00:00 2001 From: Liviu Date: Wed, 24 Nov 2021 10:53:52 +0100 Subject: [PATCH 4/6] changed helloworld --- src/helloworld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helloworld.py b/src/helloworld.py index e1e6ade..4c7d8ea 100644 --- a/src/helloworld.py +++ b/src/helloworld.py @@ -1,2 +1,2 @@ def hello(): - return "v1.0.0 bbb world" + return "v1.0.0 bbb world" \ No newline at end of file From 8a435cc05eb2b605efd32de3ac5e28c81e26f8e2 Mon Sep 17 00:00:00 2001 From: Liviu Date: Wed, 24 Nov 2021 11:00:08 +0100 Subject: [PATCH 5/6] changed helloworld --- test_src/test_helloworld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_src/test_helloworld.py b/test_src/test_helloworld.py index 8cd44f6..5aabd75 100644 --- a/test_src/test_helloworld.py +++ b/test_src/test_helloworld.py @@ -2,4 +2,4 @@ def test_hello(): - assert hello() == "v1.0.0 world" + assert hello() == "v1.0.0 bbb world" From e409f17ff2da29937046b2d993bb266e0d8d040c Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 24 Nov 2021 10:00:51 +0000 Subject: [PATCH 6/6] auto commit for embedding --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index e524656..41d296c 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,7 @@ The following code block has a file path `src/helloworld.py`: ```python:src/helloworld.py def hello(): - return "v1.0.0 world" - + return "v1.0.0 bbb world" ``` See [src/helloworld.py](./src/helloworld.py) as: