Skip to content

Commit

Permalink
updated Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Snooz82 committed Aug 27, 2021
1 parent 02d9f1c commit 2eb87a8
Show file tree
Hide file tree
Showing 7 changed files with 1,042 additions and 1,038 deletions.
6 changes: 1 addition & 5 deletions Readme.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


===================================================
DataDriver for Robot Framework®
===================================================
Expand Down Expand Up @@ -1267,6 +1265,4 @@ Binary creates with 40 test cases and 8 threads something like that:
P13: 37
P14: 38
P15: 39
P16: 40
P16: 40
1 change: 0 additions & 1 deletion atest/TestCases/Tags/foo_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@


class foo_reader(AbstractReaderClass):

def get_data_from_source(self):
return self._read_file_to_data_table()

Expand Down
3 changes: 2 additions & 1 deletion create_readme.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from DataDriver import DataDriver
from inspect import getdoc

with open("Readme.rst", "w", encoding="utf-8") as readme:
doc_string = DataDriver.__doc__
doc_string = getdoc(DataDriver)
readme.write(str(doc_string).replace("\\", "\\\\").replace("\\\\*", "\\*"))
2 changes: 1 addition & 1 deletion doc/DataDriver.html

Large diffs are not rendered by default.

Loading

0 comments on commit 2eb87a8

Please sign in to comment.