Skip to content

Commit 2eb87a8

Browse files
committed
updated Doc
1 parent 02d9f1c commit 2eb87a8

7 files changed

Lines changed: 1042 additions & 1038 deletions

File tree

Readme.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
===================================================
42
DataDriver for Robot Framework®
53
===================================================
@@ -1267,6 +1265,4 @@ Binary creates with 40 test cases and 8 threads something like that:
12671265
P13: 37
12681266
P14: 38
12691267
P15: 39
1270-
P16: 40
1271-
1272-
1268+
P16: 40

atest/TestCases/Tags/foo_reader.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44

55
class foo_reader(AbstractReaderClass):
6-
76
def get_data_from_source(self):
87
return self._read_file_to_data_table()
98

create_readme.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from DataDriver import DataDriver
2+
from inspect import getdoc
23

34
with open("Readme.rst", "w", encoding="utf-8") as readme:
4-
doc_string = DataDriver.__doc__
5+
doc_string = getdoc(DataDriver)
56
readme.write(str(doc_string).replace("\\", "\\\\").replace("\\\\*", "\\*"))

doc/DataDriver.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)