Skip to content

Commit

Permalink
added pytest-sugar, fixed typo, updated readme.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
PythonicNinja committed May 19, 2016
1 parent 9ca4525 commit 19addb2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ pydrill
.. image:: https://img.shields.io/travis/PythonicNinja/pydrill.svg
:target: https://travis-ci.org/PythonicNinja/pydrill

.. image:: https://img.shields.io/pypi/v/pydrill_dsl.svg
:target: https://pypi.python.org/pypi/pydrill_dsl

.. image:: https://readthedocs.org/projects/pydrill/badge/?version=latest
:target: https://readthedocs.org/projects/pydrill/?badge=latest
:alt: Documentation Status
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion run_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ if exists docker-machine; then
PYDRILL_HOST=$(docker-machine ip)
PYDRILL_PORT=8047
else
echo "You don't use docker-machine"
PYDRILL_HOST='localhost'
PYDRILL_PORT=8047
fi
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,9 @@
with open('HISTORY.rst') as history_file:
history = history_file.read()

requirements = [
'requests',
]
requirements = open('requirements_dev.txt', 'r').readlines()

test_requirements = open('requriements_testing.txt', 'r').readlines()
test_requirements = open('requirements_testing.txt', 'r').readlines()

setup(
name='pydrill',
Expand Down

0 comments on commit 19addb2

Please sign in to comment.