rust-embed v8.11.0
git clone https://git.pyrossh.dev/rust-embed
rust macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.
dd33060
— Mcat12
2018-06-01T23:09:09-04:00
Only run the integration tests in `lib.rs`
- .travis.yml +2 -2
.travis.yml
CHANGED
|
@@ -14,7 +14,7 @@ matrix:
|
|
|
14
14
|
|
|
15
15
|
script:
|
|
16
16
|
- |
|
|
17
|
-
cargo test --lib
|
|
17
|
+
cargo test --test lib
|
|
18
|
-
cargo test --lib --release
|
|
18
|
+
cargo test --test lib --release
|
|
19
19
|
cargo build --example basic
|
|
20
20
|
cargo build --release --example basic
|