Skip to content

Commit 1491694

Browse files
authored
Merge pull request #80 from Raymi306/master
Remove 'mdbook test' command from README and include workaround
2 parents 5af813f + 831de4c commit 1491694

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
book
2-
tests/src/*
1+
/book
2+
/tests/src/*
3+
/tests/target
34
Cargo.lock

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,16 @@ To preview your changes locally:
1717
```
1818
cargo install mdbook --version "^0.4" --force
1919
mdbook build --open
20-
mdbook test
20+
```
21+
22+
`mdbook test` does not currently work, see: https://github.com/rust-random/book/issues/79
23+
24+
As a workaround, please run:
25+
26+
```
27+
cd tests
28+
./generate.sh
29+
cargo test
2130
```
2231

2332
## License

0 commit comments

Comments
 (0)