Skip to content

Commit 0f4b3cf

Browse files
committed
Requirements files, setup tuning
1 parent 3ea4007 commit 0f4b3cf

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

requirements-build.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
invoke >= 0.20
2+
rellu >= 0.5
3+
twine
4+
wheel

requirements-dev.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
robotframework
2+
robotstatuschecker

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
'''.strip().splitlines()
2626
CURDIR = dirname(abspath(__file__))
2727
with open(join(CURDIR, 'src', NAME+'.py')) as source:
28-
VERSION = re.search("\n__version__ = '(.*)'\n", source.read()).group(1)
28+
VERSION = re.search("\n__version__ = '(.*)'", source.read()).group(1)
2929
with open(join(CURDIR, 'README.rst')) as readme:
3030
README = readme.read()
3131

test/README.rst

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
Acceptance tests for Python Remote Server
22
=========================================
33

4-
Tests are executed with `<run.py>`__ script. Run it with ``--help`` or see
4+
Tests are executed with `<run.py>`_ script. Run it with ``--help`` or see
55
its source to view the usage. Actual test cases and test libraries used by
6-
them are in `<tests>`__ and `<libs>`__ directories, respectively.
6+
them are in `<tests>`_ and `<libs>`_ directories, respectively.
77

8-
Running tests requires having both `Robot Framework`__ 2.8.4 or newer and
9-
robotstatuschecker__ installed. Easiest way to install them is using pip__::
8+
Running tests has dependencies listed in `<../requirements-dev.txt>`_ file.
9+
Install them using pip::
1010

11-
pip install 'robotframework>=2.8.4'
12-
pip install robotstatuschecker
13-
14-
__ http://robotframework.org
15-
__ https://pypi.python.org/pypi/robotstatuschecker
16-
__ http://pip-installer.org
11+
pip install -r requirements-dev.txt

0 commit comments

Comments
 (0)