diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-06-17 15:50:34 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-06-17 15:50:34 +1000 |
| commit | 33a4f56e275a58ad7ff9ac7b51780a5bc00b5f6e (patch) | |
| tree | 8a7ebbf241266e37c41495a4e2b0030aa2acc4a9 | |
| parent | 94d3a88b5a8bc86b22bce8d8fa0eec7eb33a395a (diff) | |
General: Add travis linting
| -rw-r--r-- | .travis.yml | 10 | ||||
| -rw-r--r-- | requirements.txt | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..ce59bdd --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - "3.6" + +install: + - pip install -r requirements.txt + +script: + - flake8 wal.py + - pylint wal.py diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..897e59f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +flake8 +pylint |
