Skip to content

Commit 6779a94

Browse files
authored
Separate rustfmt into multiple crates (#3998)
1 parent 5793f41 commit 6779a94

File tree

1,149 files changed

+1016
-870
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,149 files changed

+1016
-870
lines changed

.github/workflows/windows.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,9 @@ jobs:
6262
- name: 'test ignored'
6363
run: cargo test -- --ignored
6464
shell: cmd
65+
- name: 'test rustfmt-core'
66+
run: cargo test --manifest-path rustfmt-core/Cargo.toml
67+
shell: cmd
68+
- name: 'test rustfmt-core ignored'
69+
run: cargo test --manifest-path rustfmt-core/Cargo.toml -- --ignored
70+
shell: cmd

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ matrix:
4646
script:
4747
- |
4848
if [ -z ${INTEGRATION} ]; then
49-
cargo build && cargo test && cargo test -- --ignored
49+
cargo build && cargo test && cargo test -- --ignored && cargo test --manifest-path rustfmt-core/Cargo.toml && cargo test --manifest-path rustfmt-core/Cargo.toml -- --ignored
5050
else
5151
./ci/integration.sh
5252
fi

0 commit comments

Comments
 (0)