Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Commit

Permalink
Upload artifacts to S3 (#146)
Browse files Browse the repository at this point in the history
* Upload artifacts to S3

* Enable trace level logging
  • Loading branch information
davehunt authored and jrbenny35 committed Jan 26, 2018
1 parent ed36b26 commit d9340e9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,39 @@ _aliases:
apt:
packages:
- jwm
- &artifacts
artifacts:
paths:
- results
- &nightly
env: FIREFOX=nightly
addons:
<<: *artifacts
firefox: latest-nightly
before_script: skip
- &dev
env: FIREFOX=dev
addons:
<<: *artifacts
firefox: latest-dev
before_script: skip
- &beta
env: FIREFOX=beta
addons:
<<: *artifacts
firefox: latest-beta
before_script: skip
- &release
env: FIREFOX=release
addons:
<<: *artifacts
firefox: latest
before_script: skip
- &esr
env: FIREFOX=esr GECKODRIVER_VERSION=0.17.0 MOZ_HEADLESS=0
addons:
<<: *apt
<<: *artifacts
firefox: latest-esr
jobs:
include:
Expand Down
7 changes: 7 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ def browser(foxpuppet):
return foxpuppet.browser


@pytest.fixture
def firefox_options(firefox_options):
"""Fixture for configuring Firefox."""
firefox_options.log.level = 'trace'
return firefox_options


@pytest.fixture
def foxpuppet(selenium):
"""Initialize the FoxPuppet object."""
Expand Down

0 comments on commit d9340e9

Please sign in to comment.