Skip to content

Commit

Permalink
Separate rustfmt into multiple crates (#3998)
Browse files Browse the repository at this point in the history
  • Loading branch information
topecongiro authored Jan 5, 2020
1 parent 5793f41 commit 6779a94
Show file tree
Hide file tree
Showing 1,149 changed files with 1,016 additions and 870 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,9 @@ jobs:
- name: 'test ignored'
run: cargo test -- --ignored
shell: cmd
- name: 'test rustfmt-core'
run: cargo test --manifest-path rustfmt-core/Cargo.toml
shell: cmd
- name: 'test rustfmt-core ignored'
run: cargo test --manifest-path rustfmt-core/Cargo.toml -- --ignored
shell: cmd
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ matrix:
script:
- |
if [ -z ${INTEGRATION} ]; then
cargo build && cargo test && cargo test -- --ignored
cargo build && cargo test && cargo test -- --ignored && cargo test --manifest-path rustfmt-core/Cargo.toml && cargo test --manifest-path rustfmt-core/Cargo.toml -- --ignored
else
./ci/integration.sh
fi
Expand Down
Loading

0 comments on commit 6779a94

Please sign in to comment.