Skip to content

Commit

Permalink
Merge f6eb521 into 5797dc2
Browse files Browse the repository at this point in the history
  • Loading branch information
mristin committed Sep 20, 2018
2 parents 5797dc2 + f6eb521 commit a2edfbc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: python
python:
- "3.5"
- "3.6"
install:
- pip3 install -e .[dev]
- pip3 install coveralls
script:
- python3 precommit.py
- coveralls
5 changes: 2 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The following checks are performed:

Usage
=====
Pyicontract-lint parses the code and tries to infer the imported modules and functions using
Pyicontract-lint parses the code and infers the imported modules and functions using
`astroid library <https://github.com/PyCQA/astroid>`_. Hence you need to make sure that imported modules are on your
``PYTHONPATH`` before you invoke pyicontract-lint.

Expand All @@ -56,8 +56,7 @@ Once you set up the environment, invoke pyicontract-lint with a list of position
/path/to/some/directory/some-file.py \
/path/to/some/directory/another-file.py
You can also invoke it on directories. Pyicontract-lint will recursively search for ``*.py`` files (including the
subdirectories) and verify the files:
You can invoke it on directories as well. Pyicontract-lint will recursively search for ``*.py`` files and verify them:

.. code-block:: bash
Expand Down

0 comments on commit a2edfbc

Please sign in to comment.