mirror of https://github.com/rapiz1/rathole.git
test: disable tls test on mac
This commit is contained in:
parent
92d0f8d00a
commit
26dbfe10bb
|
@ -55,6 +55,8 @@ async fn tcp() -> Result<()> {
|
|||
});
|
||||
|
||||
test("tests/for_tcp/tcp_transport.toml", Type::Tcp).await?;
|
||||
// FIXME: Self-signed certificate on Mac requires mannual interference. Disable CI for now
|
||||
#[cfg(not(target_os = "macos"))]
|
||||
test("tests/for_tcp/tls_transport.toml", Type::Tcp).await?;
|
||||
test("tests/for_tcp/noise_transport.toml", Type::Tcp).await?;
|
||||
|
||||
|
@ -80,6 +82,8 @@ async fn udp() -> Result<()> {
|
|||
});
|
||||
|
||||
test("tests/for_udp/tcp_transport.toml", Type::Udp).await?;
|
||||
// See above
|
||||
#[cfg(not(target_os = "macos"))]
|
||||
test("tests/for_udp/tls_transport.toml", Type::Udp).await?;
|
||||
test("tests/for_udp/noise_transport.toml", Type::Udp).await?;
|
||||
|
||||
|
|
Loading…
Reference in New Issue