mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-10-30 13:19:35 +00:00
Currently, there are some unit tests that are failing on Windows due to various reasons: - filepath.IsAbs does not consider "/" or "\" as absolute paths, even though files can be addressed as such. - paths not properly joined (filepath.Join should be used). - files not closed, which means that they cannot be removed / renamed. - some assertions fail due to slashes / backslashes not matching. - backslashes need to be escaped in yaml files, or put between '' instead of "".