Skip to content

Commit

Permalink
Encoding of files and coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
redref committed Dec 4, 2017
1 parent 27d7f8f commit 9650644
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# LawnBoy

[![Build Status](https://travis-ci.org/redref/lawnboy.svg?branch=master)](https://travis-ci.org/redref/lawnboy)
[![Coverage Status](https://coveralls.io/repos/github/redref/lawnboy/badge.svg?branch=master)](https://coveralls.io/github/redref/lawnboy?branch=master)


## Objective

Control and optimise mower(s) move in order to mill your lawn. The program result is instructions to be executed sequentially by mowers.
Expand Down
1 change: 1 addition & 0 deletions cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
import sys
from pkg_resources import load_entry_point
Expand Down
1 change: 1 addition & 0 deletions lawnboy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import argparse
import logging

Expand Down
1 change: 1 addition & 0 deletions lawnboy/lawn.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import logging

from lawnboy.mower import *
Expand Down
1 change: 1 addition & 0 deletions lawnboy/mower.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import logging

logger = logging.getLogger('lawnboy')
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from subprocess import check_output, CalledProcessError
Expand Down
Empty file added tests/__init__.py
Empty file.
1 change: 1 addition & 0 deletions tests/test_simple.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import sys
import lawnboy

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
envlist = py27, py35

[testenv]
commands = py.test -v --pep8
commands = py.test -v --pep8 --cov=lawnboy
deps =
-r{toxinidir}/requirements.test.txt

0 comments on commit 9650644

Please sign in to comment.