aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-03-01 01:48:21 +0100
committerJustin M. Keyes <justinkz@gmail.com>2019-03-01 01:48:46 +0100
commit403922b1b47c1f03272e2bdd600dcc02db481389 (patch)
treeb02e91d42c8b8a8ef578076ae8bf8deef26b94b5
parent67535b5940b70de327d1a9ce6af4a311406eb62f (diff)
downloadrneovim-403922b1b47c1f03272e2bdd600dcc02db481389.tar.gz
rneovim-403922b1b47c1f03272e2bdd600dcc02db481389.tar.bz2
rneovim-403922b1b47c1f03272e2bdd600dcc02db481389.zip
test: fix isCI() for Quickbuild
-rw-r--r--test/helpers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers.lua b/test/helpers.lua
index 7c3654680a..9f998ef919 100644
--- a/test/helpers.lua
+++ b/test/helpers.lua
@@ -708,7 +708,7 @@ end
local function isCI()
local is_travis = nil ~= os.getenv('TRAVIS')
local is_appveyor = nil ~= os.getenv('APPVEYOR')
- local is_quickbuild = nil ~= os.getenv('PR_NUMBER')
+ local is_quickbuild = nil ~= lfs.attributes('/usr/home/quickbuild')
return is_travis or is_appveyor or is_quickbuild
end