From 68eff71d6d0fe8f87caf71701b61a1ebfa501d57 Mon Sep 17 00:00:00 2001 From: Pioterus <55625644+Pioterus@users.noreply.github.com> Date: Sat, 10 Oct 2020 12:35:17 +0200 Subject: [PATCH 1/9] Update hello.py --- hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.py b/hello.py index d4fb0b0..7260519 100644 --- a/hello.py +++ b/hello.py @@ -7,7 +7,7 @@ def hello(what): def say_what(): - return 'world' + return 'world!' def main(): From abed3b5a6500c8beda31d84749bedc4d0e108cdb Mon Sep 17 00:00:00 2001 From: Pioterus <55625644+Pioterus@users.noreply.github.com> Date: Sat, 10 Oct 2020 12:37:06 +0200 Subject: [PATCH 2/9] Update hello.py --- hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.py b/hello.py index 7260519..35990a4 100644 --- a/hello.py +++ b/hello.py @@ -7,7 +7,7 @@ def hello(what): def say_what(): - return 'world!' + return 'world__' def main(): From 3c5738871d05c1b6aae3910847ba1c43099ad4d1 Mon Sep 17 00:00:00 2001 From: Pioterus <55625644+Pioterus@users.noreply.github.com> Date: Sat, 10 Oct 2020 12:42:15 +0200 Subject: [PATCH 3/9] Update hello.py --- hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.py b/hello.py index 35990a4..e2db888 100644 --- a/hello.py +++ b/hello.py @@ -7,7 +7,7 @@ def hello(what): def say_what(): - return 'world__' + return 'world___' def main(): From 072a2b51a858dea922a13b0b3ebebfa1bed9bd33 Mon Sep 17 00:00:00 2001 From: Pioterus <55625644+Pioterus@users.noreply.github.com> Date: Sat, 10 Oct 2020 13:20:46 +0200 Subject: [PATCH 4/9] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dce752e..3bb7f41 100644 --- a/README.md +++ b/README.md @@ -1 +1,2 @@ -# python-example \ No newline at end of file +# python-example +![Build status]https://travis-ci.org/Pioterus/python-example.svg From 8a43409c3abb1f227a1595e159ad8cede8c96b8e Mon Sep 17 00:00:00 2001 From: Pioterus <55625644+Pioterus@users.noreply.github.com> Date: Sat, 10 Oct 2020 13:28:17 +0200 Subject: [PATCH 5/9] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3bb7f41..55e6d7a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # python-example -![Build status]https://travis-ci.org/Pioterus/python-example.svg +![Build status](https://travis-ci.org/Pioterus/python-example.svg) From a86b32b1aecaba942508970dba4958a2b5af647d Mon Sep 17 00:00:00 2001 From: Pioterus <55625644+Pioterus@users.noreply.github.com> Date: Sat, 10 Oct 2020 13:31:20 +0200 Subject: [PATCH 6/9] Update .travis.yml --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b666f03..9cdae7d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,12 @@ language: python sudo: false +env: + global: + - Guos=HauHau python: - 2.7 - 3.4 -script: py.test -v +- 3.8 +script: + - echo $GUOS + - py.test -v From 45f7f9c291650eff624c124c3dd4aa77057b9e1a Mon Sep 17 00:00:00 2001 From: Pioterus <55625644+Pioterus@users.noreply.github.com> Date: Sat, 10 Oct 2020 13:37:22 +0200 Subject: [PATCH 7/9] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9cdae7d..90ac304 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: python sudo: false env: global: - - Guos=HauHau + - GUOS=HauHau python: - 2.7 - 3.4 From 130ea6ebb1feb583fd42d16a05ac9fe29c03c9c3 Mon Sep 17 00:00:00 2001 From: Pioterus <55625644+Pioterus@users.noreply.github.com> Date: Sat, 10 Oct 2020 13:39:59 +0200 Subject: [PATCH 8/9] Update test_hello.py --- tests/test_hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_hello.py b/tests/test_hello.py index a9ecb71..44d4cd7 100644 --- a/tests/test_hello.py +++ b/tests/test_hello.py @@ -2,4 +2,4 @@ def test_says_world(): - assert hello.say_what() == 'world' + assert hello.say_what() == 'world___' From 674d74d145d72150df3fdcdd80b49014f300025a Mon Sep 17 00:00:00 2001 From: Pioterus <55625644+Pioterus@users.noreply.github.com> Date: Sat, 10 Oct 2020 13:49:18 +0200 Subject: [PATCH 9/9] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 55e6d7a..902e472 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # python-example ![Build status](https://travis-ci.org/Pioterus/python-example.svg) +# updated