diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-08-13 18:59:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-08-13 18:59:55 +0200 |
commit | b96a32ef1a95dd4ebf9413d686bccb1b4645f74b (patch) | |
tree | b9672586db9ccb2505455420ab8bf7d30561c7ea /.travis.yml | |
parent | 7ac616cb0a52bc72b449e19cf9db93bee116c15a (diff) | |
download | vim-git-b96a32ef1a95dd4ebf9413d686bccb1b4645f74b.tar.gz |
patch 8.2.1439: tiny and small builds have no test coveragev8.2.1439
Problem: Tiny and small builds have no test coverage.
Solution: Restore tests that do not depend on the +eval feature.
(Ken Takata, closes #6696)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index a4c628740..a8acd3ade 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,11 +7,11 @@ env: _anchors: envs: - &tiny-nogui - FEATURES=tiny CONFOPT="--disable-gui" + FEATURES=tiny TEST=testtiny CONFOPT="--disable-gui" - &tiny - FEATURES=tiny + FEATURES=tiny TEST=testtiny - &small - FEATURES=small + FEATURES=small TEST=testtiny - &normal FEATURES=normal - &linux-huge |