diff options
author | Zac Pullar-Strecker <zacmps@gmail.com> | 2018-10-19 18:08:45 +1300 |
---|---|---|
committer | Zac Pullar-Strecker <zacps@users.noreply.github.com> | 2018-10-29 20:52:14 +1300 |
commit | 58127f468787bec9ae5d463575a8db83ae3652a7 (patch) | |
tree | 72c1fdf2985b921f3ea0470b40f8b74407a5b75d /.travis.yml | |
parent | df82b5ffbdcc1cb2909f4078b435be3b46281694 (diff) | |
download | alacritty-58127f468787bec9ae5d463575a8db83ae3652a7.tar.gz alacritty-58127f468787bec9ae5d463575a8db83ae3652a7.zip |
Add cargo workspace, add winpty tests to CI
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 7fb4bdc9..0e78d82b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,3 +39,4 @@ script: - if [ -n "$CLIPPY" ]; then cargo clippy --all-features --all-targets; fi - if [ -z "$CLIPPY" ]; then cargo test; fi - if [ -z "$CLIPPY" ]; then cargo test -p font; fi + - if [ "$TRAVIS_OS_NAME" == "windows" ]; then cp target/debug/winpty-agent.exe target/debug/deps && cargo test -p winpty; fi |