15 lines
363 B
Go
15 lines
363 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package integration
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
// TestDebugWorkflow 是调试工作流功能的占位符测试
|
|
// 完整的测试需要正确的测试工具和设置
|
|
func TestDebugWorkflow(t *testing.T) {
|
|
t.Skip("Debug workflow tests require full integration test setup")
|
|
}
|