From d8ae7f982021d65047aa72aa4316397ceb79856c Mon Sep 17 00:00:00 2001 From: jwradhe Date: Tue, 23 Dec 2025 00:18:57 +0100 Subject: [PATCH] =?UTF-8?q?=C3=84ndra=20ordning=20i=20workflows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e12d6ba..02bd28d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,12 +37,6 @@ jobs: - name: Install Playwright browsers run: npx playwright install --with-deps - # Start Flask server - - name: Start Flask server - run: | - flask --app app:create_app run --port 5001 & - sleep 5 - # Linting - name: Lint Python run: npm run lint:py @@ -50,6 +44,12 @@ jobs: - name: Lint JavaScript run: npm run lint:js + # Start Flask server + - name: Start Flask server + run: | + flask --app app:create_app run --port 5001 & + sleep 5 + # Run tests - name: Run unit & integration tests (pytest) run: pytest -q