Skip to content

Commit

Permalink
Add travis.yml for automated linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
merofeev committed Aug 23, 2017
1 parent d65fc7f commit 577d5b9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
language: python
python:
- "2.7"
- "3.6"
install: "pip install ./ pylint"
script: pylint docker_volume_watcher
2 changes: 1 addition & 1 deletion docker_volume_watcher/container_notifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

import logging
from os.path import relpath
import posixpath

import docker
import posixpath
from watchdog.observers import Observer
from watchdog.events import PatternMatchingEventHandler

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[bdist_wheel]
universal=1
universal=1

0 comments on commit 577d5b9

Please sign in to comment.