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?;