From 54f163a315137d23b222ec4a67868816e0931038 Mon Sep 17 00:00:00 2001 From: Alec Delaney <89490472+tekktrik@users.noreply.github.com> Date: Sat, 5 Aug 2023 17:31:32 -0400 Subject: [PATCH 1/3] Use pytest with library in path --- build/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/action.yml b/build/action.yml index 6e2d3b5..e8b6e4a 100644 --- a/build/action.yml +++ b/build/action.yml @@ -67,7 +67,7 @@ runs: run: | if [[ -d tests ]]; then pip install pytest - pytest + pyrhon -m pytest fi - name: Add the given package filename_prefix id: package-prefix-arg From eaebcdeed36d4dcc0617c3298afcbd3a08e3cd70 Mon Sep 17 00:00:00 2001 From: Alec Delaney <89490472+tekktrik@users.noreply.github.com> Date: Sat, 5 Aug 2023 20:01:52 -0400 Subject: [PATCH 2/3] Correct typo --- build/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/action.yml b/build/action.yml index e8b6e4a..15b949b 100644 --- a/build/action.yml +++ b/build/action.yml @@ -67,7 +67,7 @@ runs: run: | if [[ -d tests ]]; then pip install pytest - pyrhon -m pytest + python -m pytest fi - name: Add the given package filename_prefix id: package-prefix-arg From 0691cdeae21e6184ae4ea8e22d57f367417b5b1c Mon Sep 17 00:00:00 2001 From: Alec Delaney <89490472+tekktrik@users.noreply.github.com> Date: Sat, 5 Aug 2023 20:14:04 -0400 Subject: [PATCH 3/3] Explain syntactical decision --- build/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/action.yml b/build/action.yml index 15b949b..076cd5d 100644 --- a/build/action.yml +++ b/build/action.yml @@ -67,7 +67,7 @@ runs: run: | if [[ -d tests ]]; then pip install pytest - python -m pytest + python -m pytest # This syntax adds the library to the path fi - name: Add the given package filename_prefix id: package-prefix-arg