Skip to content
This repository has been archived by the owner on Aug 20, 2018. It is now read-only.

Fix Travis-CI integration #93

Merged
merged 3 commits into from May 7, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -2,3 +2,5 @@ language: python
python: 2.7
install: "pip install flake8"
script: "flake8 ."
notifications:
email: webqa-ci@mozilla.org
2 changes: 1 addition & 1 deletion browserid/__init__.py
@@ -1 +1 @@
from browser_id import BrowserID
from browser_id import BrowserID # noqa
2 changes: 0 additions & 2 deletions browserid/browser_id.py
Expand Up @@ -4,8 +4,6 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import selenium


class BrowserID(object):

Expand Down
2 changes: 0 additions & 2 deletions browserid/pages/base.py
Expand Up @@ -4,8 +4,6 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import time

from selenium.common.exceptions import NoSuchElementException


Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
@@ -1,2 +1,5 @@
[flake8]
ignore=E501

[pytest]
python_files=check_*.py
2 changes: 1 addition & 1 deletion setup.py
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup
import os

# get documentation from the README
Expand Down