aboutsummaryrefslogtreecommitdiff
path: root/test/helpers.lua
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2022-02-17 17:25:58 -0500
committerGitHub <noreply@github.com>2022-02-17 17:25:58 -0500
commitdf0fae2ff7cd666947b752f76987bb6756e187da (patch)
tree5e3f67f9cf7c7eeceb1898a7b99d94c2b717518a /test/helpers.lua
parent1fd106ca88a606241e1e1fb8c73645dcea5ea5c8 (diff)
parentf3e6cc1a23b84ee5a8698614e78bce6d702a6d61 (diff)
downloadrneovim-df0fae2ff7cd666947b752f76987bb6756e187da.tar.gz
rneovim-df0fae2ff7cd666947b752f76987bb6756e187da.tar.bz2
rneovim-df0fae2ff7cd666947b752f76987bb6756e187da.zip
Merge pull request #17430 from dundargoc/test/remove-travis
Diffstat (limited to 'test/helpers.lua')
-rw-r--r--test/helpers.lua6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/helpers.lua b/test/helpers.lua
index 522714c8be..333e98d495 100644
--- a/test/helpers.lua
+++ b/test/helpers.lua
@@ -801,12 +801,10 @@ end
function module.isCI(name)
local any = (name == nil)
- assert(any or name == 'appveyor' or name == 'travis' or name == 'sourcehut' or name == 'github')
- local av = ((any or name == 'appveyor') and nil ~= os.getenv('APPVEYOR'))
- local tr = ((any or name == 'travis') and nil ~= os.getenv('TRAVIS'))
+ assert(any or name == 'sourcehut' or name == 'github')
local sh = ((any or name == 'sourcehut') and nil ~= os.getenv('SOURCEHUT'))
local gh = ((any or name == 'github') and nil ~= os.getenv('GITHUB_ACTIONS'))
- return tr or av or sh or gh
+ return sh or gh
end