From 924ee144f6cab2a76e5ee465974696c2100a9522 Mon Sep 17 00:00:00 2001 From: Jordi Loyzaga Date: Sat, 27 Apr 2024 03:33:16 -0600 Subject: [PATCH] testing parallel again --- scripts/CI/lint.sh | 4 ++-- scripts/CI/setup.sh | 2 +- scripts/CI/test.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/CI/lint.sh b/scripts/CI/lint.sh index 4a64eb2..e7bf5fb 100755 --- a/scripts/CI/lint.sh +++ b/scripts/CI/lint.sh @@ -1,3 +1,3 @@ cd lockbox -echo "Starting ruff check...\n\n\n" -ruff check --config=./pyproject.toml \ No newline at end of file +printf "\n\n|| Starting ruff check ||\n\n" +ruff check --config=../pyproject.toml \ No newline at end of file diff --git a/scripts/CI/setup.sh b/scripts/CI/setup.sh index 0e6178d..68193d5 100755 --- a/scripts/CI/setup.sh +++ b/scripts/CI/setup.sh @@ -1,3 +1,3 @@ cd lockbox -echo "Starting setup...\n\n\n" +printf "\n\n|| Starting setup ||\n\n" python manage.py migrate \ No newline at end of file diff --git a/scripts/CI/test.sh b/scripts/CI/test.sh index 2d17696..b36b368 100755 --- a/scripts/CI/test.sh +++ b/scripts/CI/test.sh @@ -1,3 +1,3 @@ cd lockbox -printf "Starting pytest run...\n\n\n" +printf "\n\n|| Starting pytest run ||\n\n" pytest --cov=. --cov-report term-missing --reuse-db \ No newline at end of file