1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/cli/tests/tty_tests.rs
Ryan Dahl ddbfe9b5aa Add debug build to github actions
This disabled the tty_tests which seem to be very flaky with the debug
build.
2019-10-15 11:50:01 -04:00

19 lines
605 B
Rust

// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
#[macro_use]
extern crate lazy_static;
extern crate tempfile;
mod util;
use util::*;
// TODO(#2933): Rewrite these tests in rust.
// TODO(ry) These tests can't run in parallel.
#[test]
fn tty_tests() {
let g = http_server();
// TODO(ry) Re-enable these flaky tests.
// run_python_script("tools/complex_permissions_test.py");
// run_python_script("tools/permission_prompt_test.py");
// TODO(ry) is_tty_test is not passing on travis when run with "cargo test"
// run_python_script("tools/is_tty_test.py");
drop(g);
}