From 8fb554e59361e55556d562039580cb9a69806fc1 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 25 Jan 2017 20:50:23 -0800 Subject: [PATCH] Rename no_std tests to underscores --- .travis.yml | 2 +- test_suite/{no-std-tests => no_std}/Cargo.toml | 0 test_suite/{no-std-tests => no_std}/src/main.rs | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename test_suite/{no-std-tests => no_std}/Cargo.toml (100%) rename test_suite/{no-std-tests => no_std}/src/main.rs (100%) diff --git a/.travis.yml b/.travis.yml index 14ab0ebd..0d4972a0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ script: - (cd serde && travis-cargo --only nightly build -- --no-default-features --features collections) - (cd test_suite && travis-cargo --only beta test) - (cd test_suite && travis-cargo --only nightly test -- --features unstable-testing) -- (cd test_suite/no-std-tests && travis-cargo --only nightly build) +- (cd test_suite/no_std && travis-cargo --only nightly build) - (cd serde && travis-cargo --only stable doc) env: global: diff --git a/test_suite/no-std-tests/Cargo.toml b/test_suite/no_std/Cargo.toml similarity index 100% rename from test_suite/no-std-tests/Cargo.toml rename to test_suite/no_std/Cargo.toml diff --git a/test_suite/no-std-tests/src/main.rs b/test_suite/no_std/src/main.rs similarity index 100% rename from test_suite/no-std-tests/src/main.rs rename to test_suite/no_std/src/main.rs