-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Pass a test directory to rustfmt #50468
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@bors: r+ |
📌 Commit df97dd1 has been approved by |
Pass a test directory to rustfmt Another attempt to fix the rustfmt tests. `RUSTFMT_TEST_DIR` is consumed by Rustfmt in the latext commit (thus the Rustfmt update) because we need a place to create temp files that won't be read-only. r? @alexcrichton
💔 Test failed - status-travis |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@bors retry 3 hour timeout 🤨 Top 10 timespent:
Top 5 timespent inside stage1-rustc:
|
Pass a test directory to rustfmt Another attempt to fix the rustfmt tests. `RUSTFMT_TEST_DIR` is consumed by Rustfmt in the latext commit (thus the Rustfmt update) because we need a place to create temp files that won't be read-only. r? @alexcrichton
☀️ Test successful - status-appveyor, status-travis |
I'm cursed. I just can't seem to get Rustfmt's tests to pass :-( |
@nrc you could temporarily run the tools job on CI with this diff: diff --git a/.travis.yml b/.travis.yml
index 63831cd596..9789b8eb75 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -169,7 +169,7 @@ matrix:
- env: IMAGE=x86_64-gnu-aux
if: branch = auto
- env: IMAGE=x86_64-gnu-tools
- if: branch = auto
+ # if: branch = auto
- env: IMAGE=x86_64-gnu-debug
if: branch = auto
- env: IMAGE=x86_64-gnu-nopt This allows you to experiment before merging. |
Another attempt to fix the rustfmt tests.
RUSTFMT_TEST_DIR
is consumed by Rustfmt in the latext commit (thus the Rustfmt update) because we need a place to create temp files that won't be read-only.r? @alexcrichton