summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShea Newton <sheanewt@gmail.com>2017-12-05 18:31:56 -0800
committerShea Newton <sheanewt@gmail.com>2017-12-05 18:31:56 -0800
commit2c776522aea807a37a78e47154c128c198b5d985 (patch)
treeff7a567042a1979be9b35cb6ed8258eaa890ab73
parentb4ba0923fb00c916584fd2f79455bf179efa1558 (diff)
quickchecking CI tests
The changes reflected in this PR include the logic to test the `quickcheking` crate itself. Rather that just validate that the `quickchecking` crate builds in CI with `cargo check`, we can run now `cargo test`.
-rwxr-xr-xci/script.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/script.sh b/ci/script.sh
index b9e75892..91ea7c13 100755
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -41,7 +41,7 @@ case "$BINDGEN_JOB" in
"quickchecking")
cd ./tests/quickchecking
# TODO: Actually run quickchecks once `bindgen` is reliable enough.
- cargo check
+ cargo test
;;
*)
echo "Error! Unknown \$BINDGEN_JOB: '$BINDGEN_JOB'"