Skip to content

Commit 7d7f3a4

Browse files
committed
Also run the unit tests on CI
1 parent 484749c commit 7d7f3a4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ matrix:
1010
- rust: nightly
1111
env: FEATURES="--features stable"
1212

13-
script: cd test-project && cargo test $FEATURES
13+
script:
14+
- cargo test $FEATURES
15+
- cd test-project && cargo test $FEATURES
1416

1517
notifications:
1618
email:

appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ build: false
1616

1717
test_script:
1818
- if %CHANNEL%==stable (cargo build --features stable) else (cargo build)
19+
- if %CHANNEL%==stable (cargo test --features stable) else (cargo test)
1920
- cd test-project && if %CHANNEL%==stable (cargo test --features stable) else (cargo test)
2021

2122
branches:

0 commit comments

Comments
 (0)