From 2c6ad4bf93cf0dd001246ecda1a80739eea7aa5a Mon Sep 17 00:00:00 2001 From: ale-rt Date: Wed, 6 Feb 2019 17:22:44 +0100 Subject: [PATCH] Fix the travis build Fixes #100 --- .travis.yml | 6 +++--- CHANGES.rst | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7557833..8eaa806 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,9 @@ +dist: xenial language: python python: 2.7 sudo: false addons: - sauce_connect: - username: $SAUCE_USERNAME - access_key: $SAUCE_ACCESS_KEY + sauce_connect: true cache: pip: true directories: @@ -19,6 +18,7 @@ env: - ARTIFACTS_S3_BUCKET=plone.app.robotframework - ROBOT_BUILD_NUMBER=travis-$TRAVIS_BUILD_NUMBER - ROBOT_REMOTE_URL=http://$SAUCE_USERNAME:$SAUCE_ACCESS_KEY@ondemand.saucelabs.com:80/wd/hub + - ZSERVER_PORT=55001 matrix: - ROBOT_BROWSER=firefox ROBOT_DESIRED_CAPABILITIES=tunnel-identifier:$TRAVIS_JOB_NUMBER - ROBOT_BROWSER=chrome ROBOT_DESIRED_CAPABILITIES=tunnel-identifier:$TRAVIS_JOB_NUMBER diff --git a/CHANGES.rst b/CHANGES.rst index dd9f948..a280d4b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,10 @@ New features: Bug fixes: +- Fix the travis build which is broken since we are picking a random port + (fixes #100) + [ale-rt] + - Remove five.globalrequest dependency. It has been deprecated upstream (Zope 4). [gforcada]