We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 484749c commit 7d7f3a4Copy full SHA for 7d7f3a4
.travis.yml
@@ -10,7 +10,9 @@ matrix:
10
- rust: nightly
11
env: FEATURES="--features stable"
12
13
-script: cd test-project && cargo test $FEATURES
+script:
14
+ - cargo test $FEATURES
15
+ - cd test-project && cargo test $FEATURES
16
17
notifications:
18
email:
appveyor.yml
@@ -16,6 +16,7 @@ build: false
test_script:
- if %CHANNEL%==stable (cargo build --features stable) else (cargo build)
19
+ - if %CHANNEL%==stable (cargo test --features stable) else (cargo test)
20
- cd test-project && if %CHANNEL%==stable (cargo test --features stable) else (cargo test)
21
22
branches:
0 commit comments