push
Some checks failed
CI/CD Pipeline / test (push) Failing after 46s
CI/CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
Philipp Hofer
2025-10-29 12:17:08 +01:00
parent b833b2a27a
commit 704708e37f
2 changed files with 3 additions and 2 deletions

View File

@@ -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

View File

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