123456789101112131415161718192021222324252627282930 |
- [tasks.test_local]
- category = "Build"
- dependencies = ["rm_cache"]
- description = "Build desktop targets."
- script = '''
- cd rust-lib
- cargo test
- '''
- [tasks.test_remote]
- dependencies = ["rm_cache"]
- script = """
- cd rust-lib
- cargo test --features "flowy-workspace/http_server","flowy-user/http_server"
- """
- [tasks.run_server]
- script = """
- cd backend
- cargo run
- """
- [tasks.rm_cache]
- script = """
- rm -rf rust-lib/flowy-test/temp
- """
|