pbylicki / rfhub2

Rewrite of rfhub with FastAPI
Apache License 2.0
30 stars 10 forks source link

Feature: Support for test_cases as well? #114

Open james-powis opened 4 years ago

james-powis commented 4 years ago

Libdoc does keywords Testdoc does testcases

What would the effort be to add testcase documentation to the tooling?

MaciejWiczk commented 4 years ago

Hi @james-powis, it would require few things:

I have just once used testdoc tool, but I think that nesting tests may be important here. Flattening test cases might end up in fogging overall view.

idefixcert commented 4 years ago

I think adding the tests into the view would be a killer feature. I hope we get this!

MaciejWiczk commented 4 years ago

Frontend changes:

Backend changes:

CLI changes:

dir = Path.cwd() / ".." / ".." / "tests" / "acceptance" suite = TestSuiteFactory(str(dir)).suites



@pbylicki what do You think?