From cd68bad60340986f8a7e5d20fce76d427a02ed98 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Wed, 8 Dec 2021 14:13:17 -0800 Subject: [PATCH] update Signed-off-by: Jess Frazelle --- .github/workflows/build-test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 3c71466f8..d2350ba9a 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -32,14 +32,15 @@ jobs: echo "export PATH=\"${HOME}/.poetry/bin;\${PATH}\"" >> "${HOME}/.bashrc" echo "source ${HOME}/.poetry/env" >> "${HOME}/.bashrc" source "${HOME}/.bashrc" - source $HOME/.poetry/env - name: Build + shell: bash run: | cd kittycad poetry build - name: Lint with flake8 + shell: bash run: | # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics @@ -47,6 +48,7 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest + shell: bash run: | cd kittycad pytest