From 704708e37fda6fdb56908faf091c845049885090 Mon Sep 17 00:00:00 2001 From: Philipp Hofer Date: Wed, 29 Oct 2025 12:17:08 +0100 Subject: [PATCH] push --- .gitea/workflows/action.yml | 4 ++-- tests/integration.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml index c069909..f7f4795 100644 --- a/.gitea/workflows/action.yml +++ b/.gitea/workflows/action.yml @@ -21,8 +21,8 @@ jobs: - name: Build run: cargo build - - name: Backend tests - run: cargo test --verbose + - name: Tests + run: cargo test --verbose -- --ignored deploy: runs-on: ubuntu-latest diff --git a/tests/integration.rs b/tests/integration.rs index aad33d0..03eb69c 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -1,5 +1,6 @@ use player::Backend; +#[ignored] #[tokio::test] async fn main() -> Result<(), Box> { let listener = tokio::net::TcpListener::bind("0.0.0.0:0").await?;