From 702a427d14a04145d9c9d7983c998d7fb1564da6 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 12:47:47 +0000 Subject: [PATCH] CI with bash shebang --- .gitea/workflows/ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ff8c8ab..9d4a745 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,13 +6,11 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Setup + - name: Setup and test run: | - set -x + #!/bin/bash + set -e pip3 install -e /app pip3 install pytest pytest-asyncio - - name: Run tests - run: | cd /app - pytest tests/ -v - exit $? \ No newline at end of file + pytest tests/ -v \ No newline at end of file