Many thanks for making this library!
However, when running cargo test --all-features --no-fail-fast with your current library, I have noticed that your 2905713 has caused the following regression:
Before
error: 1 target failed:
`--doc`
After
error: 3 targets failed:
`--test glifparser`
`--test postscript`
`--doc`
... so clearly something has gone wrong with that particular commit.
Many thanks in advance!
There is also another unrelated problem as shown above:
---- src/lib.rs - (line 19) stdout ----
error: cannot find macro `test_data` in this scope
--> src/lib.rs:25:12
|
9 | let path = test_data!();
| ^^^^^^^^^
error: aborting due to 1 previous error
[..]
error: 1 target failed:
`--doc`
... which I believe is caused by cargo test trying to run your doctest:
|
#![doc = include_str!("../README.md")] |
Many thanks for making this library!
However, when running
cargo test --all-features --no-fail-fastwith your current library, I have noticed that your 2905713 has caused the following regression:Before
After
... so clearly something has gone wrong with that particular commit.
Many thanks in advance!
There is also another unrelated problem as shown above:
... which I believe is caused by
cargo testtrying to run your doctest:spiro.rlib/src/lib.rs
Line 1 in c75f5d9