Paligo/xee

Windows and the test runner

オープン

#74 opened on 2025/03/31

 (0 件のコメント) (0 件のリアクション) (0 人の担当者)Rust (40 件のフォーク)auto 404
good first issuetest runner

Repository metrics

Stars
 (484 個のスター)
PR merge metrics
 (PR metrics pending)

説明

Right now we have the url dependency in xee-testrunner just to support running the tests on Windows in this code:

        let url_str =
            url::Url::from_file_path(&self.full_path).expect("Only absolute path is supported");
        IriAbsoluteString::try_from(format!("{url_str}")).expect("Failed to convert file path URI")
    }
  • Could we support this using iri-string instead?
  • Could we support this by some built-in Rust function that can turn a path into forward slashes?

コントリビューターガイド