We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900b420 commit e3b1303Copy full SHA for e3b1303
crates/rust-analyzer/tests/slow-tests/main.rs
@@ -919,7 +919,7 @@ pub fn foo(_input: TokenStream) -> TokenStream {
919
expect![[r#"
920
921
```rust
922
- foo::Bar
+ foo::Foo
923
```
924
925
crates/test-utils/src/lib.rs
@@ -389,7 +389,7 @@ fn main() {
389
/// also creates a file at `./target/.slow_tests_cookie` which serves as a flag
390
/// that slow tests did run.
391
pub fn skip_slow_tests() -> bool {
392
- let should_skip = std::env::var("CI").is_err() && std::env::var("RUN_SLOW_TESTS").is_err();
+ let should_skip = std::env::var("RUN_SLOW_TESTS").is_err();
393
if should_skip {
394
eprintln!("ignoring slow test");
395
} else {
0 commit comments