From fc4737e15687c40cf26f70247b7386311cea3f93 Mon Sep 17 00:00:00 2001 From: nickkatsios Date: Thu, 11 Jan 2024 13:52:06 +0200 Subject: [PATCH] further path fixes on actions --- .github/workflows/build_and_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 172ca8f..a4e3234 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -66,8 +66,8 @@ jobs: # things like Django apps don't need this. But it's a good idea since it fully-exercises the # pyproject.toml and makes that if you add things like console-scripts at some point that # they'll be installed and working. - - run: poetry install --no-interaction + - run: cd scrappers && poetry install --no-interaction # And finally run tests. I'm using pytest and all my pytest config is in my `pyproject.toml` # so this line is super-simple. But it could be as complex as you need. - - run: poetry run pytest -m "not database" + - run: cd scrappers && poetry run pytest -m "not database"