From 17732f352fa7f82fc7d776fc874635b3e273b4d9 Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Mon, 15 Nov 2021 07:09:45 +0100 Subject: [PATCH 1/4] change workflows to yml --- .github/workflow/{main.yaml => main.yml} | 0 .../{staging_integration.yaml => staging_integration.yml} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename .github/workflow/{main.yaml => main.yml} (100%) rename .github/workflow/{staging_integration.yaml => staging_integration.yml} (100%) diff --git a/.github/workflow/main.yaml b/.github/workflow/main.yml similarity index 100% rename from .github/workflow/main.yaml rename to .github/workflow/main.yml diff --git a/.github/workflow/staging_integration.yaml b/.github/workflow/staging_integration.yml similarity index 100% rename from .github/workflow/staging_integration.yaml rename to .github/workflow/staging_integration.yml From fe090febc3aaa4771b7c37015ffb012b8ef6ecb1 Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Mon, 15 Nov 2021 07:13:41 +0100 Subject: [PATCH 2/4] change workflow path to workflows --- .github/{workflow => workflows}/main.yml | 0 .github/{workflow => workflows}/staging_integration.yml | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename .github/{workflow => workflows}/main.yml (100%) rename .github/{workflow => workflows}/staging_integration.yml (100%) diff --git a/.github/workflow/main.yml b/.github/workflows/main.yml similarity index 100% rename from .github/workflow/main.yml rename to .github/workflows/main.yml diff --git a/.github/workflow/staging_integration.yml b/.github/workflows/staging_integration.yml similarity index 100% rename from .github/workflow/staging_integration.yml rename to .github/workflows/staging_integration.yml From 47550a077a9d8950930d036b89aad95a8b0f7eef Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Mon, 15 Nov 2021 07:16:17 +0100 Subject: [PATCH 3/4] add pytest to requirements --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e9d0e13..a3611c2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ mdutils -pyyaml \ No newline at end of file +pyyaml +pytest \ No newline at end of file From 2b07b1a38ea8d27a5aba6e35ad51bfd473308fa3 Mon Sep 17 00:00:00 2001 From: Sebastian Muthwill Date: Mon, 15 Nov 2021 07:34:23 +0100 Subject: [PATCH 4/4] fix bug with test on ubuntu --- powerapps_docstring/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powerapps_docstring/parser.py b/powerapps_docstring/parser.py index 489797c..5c64d2d 100644 --- a/powerapps_docstring/parser.py +++ b/powerapps_docstring/parser.py @@ -20,7 +20,7 @@ def get_connections(self) -> dict: return connections def _get_screen_content(self, screen_name): - screen_path = os.path.join(self.source_path, "src", screen_name) + screen_path = os.path.join(self.source_path, "Src", screen_name) screen_content = {} with open(screen_path, "r", encoding='utf8') as file: