Improve CI test coverage (#670)

* Improve CI test coverage

* Run clippy/rustfmt/rustdoc in CI

* Disable warnings when building bundled sqlite
This commit is contained in:
Thom Chiovoloni
2020-04-06 10:43:43 -07:00
committed by GitHub
parent 521f8dc481
commit 26c744d0c3
3 changed files with 63 additions and 6 deletions

View File

@@ -78,7 +78,8 @@ mod build_bundled {
.flag("-DSQLITE_SOUNDEX")
.flag("-DSQLITE_THREADSAFE=1")
.flag("-DSQLITE_USE_URI")
.flag("-DHAVE_USLEEP=1");
.flag("-DHAVE_USLEEP=1")
.warnings(false);
// Older versions of visual studio don't support c99 (including isnan), which
// causes a build failure when the linker fails to find the `isnan`
// function. `sqlite` provides its own implmentation, using the fact