integration-test #8

Merged
philipp merged 3 commits from integration-test into main 2025-10-29 12:18:09 +01:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 704708e37f - Show all commits

View File

@@ -21,8 +21,8 @@ jobs:
- name: Build - name: Build
run: cargo build run: cargo build
- name: Backend tests - name: Tests
run: cargo test --verbose run: cargo test --verbose -- --ignored
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@@ -1,5 +1,6 @@
use player::Backend; use player::Backend;
#[ignored]
#[tokio::test] #[tokio::test]
async fn main() -> Result<(), Box<dyn std::error::Error>> { async fn main() -> Result<(), Box<dyn std::error::Error>> {
let listener = tokio::net::TcpListener::bind("0.0.0.0:0").await?; let listener = tokio::net::TcpListener::bind("0.0.0.0:0").await?;