Skip to content

Commit

Permalink
Make win32 CI machine run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zcbenz committed Apr 30, 2016
1 parent fe3c78a commit 6756f8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/cibuild
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def main():
if os.environ.has_key('TARGET_ARCH'):
target_arch = os.environ['TARGET_ARCH']

is_appveyor = (os.getenv('APPVEYOR') == 'True')
is_travis = (os.getenv('TRAVIS') == 'true')
if is_travis and PLATFORM == 'linux':
print 'Setup travis CI'
Expand Down Expand Up @@ -76,7 +77,7 @@ def main():
run_script('upload.py')
else:
run_script('build.py', ['-c', 'D'])
if PLATFORM != 'win32' and target_arch == 'x64':
if not is_appveyor and target_arch == 'x64':
run_script('test.py', ['--ci'])


Expand Down

0 comments on commit 6756f8c

Please sign in to comment.