Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Make the workspace hack local to RLS #952

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.idea

target
test_data/Cargo.lock
1 change: 0 additions & 1 deletion src/test/lens.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ use crate::{
};

#[test]
#[ignore] // FIXME(#925) intermittent failure
fn test_lens_run() {
let mut env = Environment::new("lens_run");

Expand Down
5 changes: 5 additions & 0 deletions test_data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Make sure that test are not accidentally become members of
# the main workspace in the rust-lang/rust repository
[workspace]
members = ["./*/"]
exclude = ["./compiler_message", "./target"]