Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add quickcheck arbitrary and some quickcheck tests #99

Merged
merged 23 commits into from
Aug 11, 2019
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -70,7 +70,6 @@ version = "1.0"
default = ["std"]
i128 = ["num-integer/i128", "num-traits/i128"]
std = ["num-integer/std", "num-traits/std"]
quickcheck_testing = ["quickcheck", "quickcheck_macros"]

[build-dependencies]
autocfg = "0.1.2"
2 changes: 1 addition & 1 deletion ci/test_full.sh
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ if [[ "$TRAVIS_RUST_VERSION" =~ ^(nightly|beta|stable|1.31.0|1.26.0)$ ]]; then
FEATURES="$FEATURES i128"
fi
if [[ "$TRAVIS_RUST_VERSION" =~ ^(nightly|beta|stable|1.31.0)$ ]]; then
FEATURES="$FEATURES quickcheck quickcheck_testing"
FEATURES="$FEATURES quickcheck"
fi

# num-bigint should build and test everywhere.