-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Saucelabs #313
base: master
Are you sure you want to change the base?
Conversation
.travis.yml
Outdated
@@ -14,17 +19,30 @@ install: | |||
- mkdir -p buildout-cache/downloads | |||
- python bootstrap.py -c travis.cfg | |||
- bin/buildout -c travis.cfg -N -q | |||
- curl -O http://saucelabs.com/downloads/Sauce-Connect-latest.zip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sorry I haven't managed to update the docs yet, but it's possible to save a few lines in SauceConnect-setup nowadays. See: https://raw.github.com/datakurre/example.product/p.a.robotframework/.travis.yml
With these lines in .travis.yml
SauceConnect is started and stopped automatically and all SauceConnect and Java -related lines could be removed:
addons:
sauce_connect:
- username: $SAUCE_USERNAME
- access_key: $SAUCE_ACCESS_KEY
But thid does require one more change:
- ROBOT_DESIRED_CAPABILITIES=tunnel-identifier:$TRAVIS_JOB_ID
should be
- ROBOT_DESIRED_CAPABILITIES=tunnel-identifier:$TRAVIS_JOB_NUMBER
(Because Travis uses TRAVIS_JOB_NUMBER as SauceLabs' "tunnel identifier".)
…roduct/p.a.robotframework/.travis.yml
let's review it :-) |
Conflicts: src/collective/cover/tests/test_embed_tile.py src/collective/cover/tests/test_file_tile.py src/collective/cover/tests/test_list_tile.py src/collective/cover/tests/test_richtext_tile.py
effbc63
to
812a65e
Compare
Please merge my branch. It is not passing all tests just because the master is failing with the same troubles. Sauce Labs is working as expected.