File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change
1
+ invoke >= 0.20
2
+ rellu >= 0.5
3
+ twine
4
+ wheel
Original file line number Diff line number Diff line change
1
+ robotframework
2
+ robotstatuschecker
Original file line number Diff line number Diff line change 25
25
''' .strip ().splitlines ()
26
26
CURDIR = dirname (abspath (__file__ ))
27
27
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 )
29
29
with open (join (CURDIR , 'README.rst' )) as readme :
30
30
README = readme .read ()
31
31
Original file line number Diff line number Diff line change 1
1
Acceptance tests for Python Remote Server
2
2
=========================================
3
3
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
5
5
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.
7
7
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 ::
10
10
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
You can’t perform that action at this time.
0 commit comments