test: prevent some tests from being run locally

This commit is contained in:
Shunsuke Shibayama 2023-02-24 07:49:12 +09:00
parent aaa259d6c0
commit 047f86bbee

View file

@ -36,6 +36,7 @@ fn exec_repl_for_loop() -> Result<(), ()> {
}
#[test]
#[ignore]
fn exec_repl_auto_indent_dedent_check() -> Result<(), ()> {
expect_repl_success(
"repl_auto_indent_dedent",
@ -100,6 +101,7 @@ fn exec_repl_class_def_with_deco() -> Result<(), ()> {
}
#[test]
#[ignore]
fn exec_invalid_class_inheritable() -> Result<(), ()> {
expect_repl_failure(
"repl_auto_indent_dedent",
@ -151,6 +153,7 @@ fn exec_invalid_class_def() -> Result<(), ()> {
}
#[test]
#[ignore]
fn exec_repl_invalid_indent() -> Result<(), ()> {
expect_repl_failure(
"repl_invalid_indent",
@ -173,6 +176,7 @@ fn exec_repl_invalid_indent() -> Result<(), ()> {
}
#[test]
#[ignore]
fn exec_repl_invalid_def_after_the_at_sign() -> Result<(), ()> {
expect_repl_failure(
"repl_invalid_indent",